Click or drag to resize

OrderedDictionaryTKey, TValueRemove(TKey) Method

Removes the value with the specified key from the OrderedDictionaryTKey, TValue as an O(n) operation.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public bool Remove(
	TKey key
)
View Source

Parameters

key  TKey
The key of the element to remove.

Return Value

Boolean
true if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the OrderedDictionaryTKey, TValue.

Implements

IDictionaryTKey, TValueRemove(TKey)
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
See Also