SortedMapBaseKey, ValueRemove Method (KeyValuePairKey, Value) |
Removes a key value pair from the map (if found)
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool Remove(
KeyValuePair<Key, Value> keyValue
)
Public Function Remove (
keyValue As KeyValuePair(Of Key, Value)
) As Boolean
public:
bool Remove(
KeyValuePair<Key, Value> keyValue
)
member Remove :
keyValue : KeyValuePair<'Key, 'Value> -> bool
Parameters
- keyValue
- Type: System.Collections.GenericKeyValuePairKey, Value
[Missing <param name="keyValue"/> documentation for "M:VelocityDb.Collection.SortedMapBase`2.Remove(System.Collections.Generic.KeyValuePair{`0,`1})"]
Return Value
Type:
Booleantrue if key was found and removed; otherwise false
See Also