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.

Definition

Namespace: Gemstone.Collections
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public bool Remove(
	TKey key,
	out TValue value
)

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

ArgumentNullExceptionkey is null.

See Also