OrderedDictionaryTKey, TValueRemove(TKey, TValue) Method
Namespace: Gemstone.CollectionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
public bool Remove(
TKey key,
out TValue value
)
Public Function Remove (
key As TKey,
<OutAttribute> ByRef value As TValue
) As Boolean
public:
bool Remove(
TKey key,
[OutAttribute] TValue% value
)
function Remove(key, value);
- 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.
Booleantrue if the element is successfully found and removed; otherwise, false. This method returns false if
key is not found in the
OrderedDictionaryTKey, TValue.
ArgumentNullException | key is null. |