Click or drag to resize

OrderedDictionaryTKey, TValueGetOrAdd(TKey, TValue) Method

Adds a key/value pair to the OrderedDictionaryTKey, TValue if the key does not already exist as an O(1) operation.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.264-beta+d1c3a754a4d50e5c740e530e6875e878ac32de9a
Syntax
public TValue GetOrAdd(
	TKey key,
	TValue value
)
View Source

Parameters

key  TKey
The key of the element to add.
value  TValue
The value to be added, if the key does not already exist.

Return Value

TValue
The 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.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
See Also