OrderedDictionaryTKey, TValueRemove(TKey) Method

Removes the value with the specified key from the OrderedDictionaryTKey, TValue 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
)

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

ArgumentNullExceptionkey is null.

See Also