Click or drag to resize

OrderedDictionaryTKey, TValueRemove(TKey, TValue) Method

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

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.313-beta+5fa9ed2a8819cbb219f1e178bdad6a8d23dec2ce
Syntax
public bool Remove(
	TKey key,
	out TValue value
)
View Source

Parameters

key  TKey
The key of the element to remove.
value  TValue
When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.

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