|
RedBlackTreeDictionaryTKey, TValueRemove Method (TKey)
|
Removes the element with the specified key from the dictionary.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public bool Remove(
TKey key
)
Public Function Remove (
key As TKey
) As Boolean
Request Example
View SourceParameters
- key
- Type: TKey
The key of the element to remove.
Return Value
Type:
Booleantrue if the element is successfully removed; otherwise, false.
This method also returns false if
key was not found
in the original dictionary.
See Also