Click or drag to resize

OrderedDictionaryTKey, TValueTryAdd Method

Tries to add the specified key and value to the dictionary as an O(1) operation.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.191-beta+925724bd48239ba1d4417fe63f8c4977892ab734
Syntax
public bool TryAdd(
	TKey key,
	TValue value
)
View Source

Parameters

key  TKey
The key of the element to add.
value  TValue
The value of the element to add. The value can be null for reference types.

Return Value

Boolean
true if the element was added to the OrderedDictionaryTKey, TValue; false if the OrderedDictionaryTKey, TValue already contained an element with the specified key.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
See Also