OrderedDictionaryTKey, TValueGetOrAdd(TKey, TValue) Method
Namespace: Gemstone.CollectionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public TValue GetOrAdd(
TKey key,
TValue value
)
Public Function GetOrAdd (
key As TKey,
value As TValue
) As TValue
public:
TValue GetOrAdd(
TKey key,
TValue value
)
function GetOrAdd(key, value);
- key TKey
- The key of the element to add.
- value TValue
- The value to be added, if the key does not already exist.
TValueThe value for the key. This will be either the existing value for the key if the key is already in the dictionary, or the new value if the key was not in the dictionary.
ArgumentNullException | key is null. |