ImmutableSortedDictionary<TKey,TValue>.Builder.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Remove(KeyValuePair<TKey,TValue>) |
Removes the first occurrence of a specific object from the immutable sorted dictionary. |
Remove(TKey) |
Removes the element with the specified key from the immutable sorted dictionary. |
Remove(KeyValuePair<TKey,TValue>)
Removes the first occurrence of a specific object from the immutable sorted dictionary.
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<TKey, TValue> item);
public bool Remove (System.Collections.Generic.KeyValuePair<TKey,TValue> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
Public Function Remove (item As KeyValuePair(Of TKey, TValue)) As Boolean
Parameters
The object to remove from the dictionary.
Returns
true
if item
was successfully removed from the dictionary; otherwise, false
. This method also returns false
if item
is not found in the dictionary.
Implements
Applies to
Remove(TKey)
Removes the element with the specified key from the immutable sorted dictionary.
public:
virtual bool Remove(TKey key);
public bool Remove (TKey key);
abstract member Remove : 'Key -> bool
override this.Remove : 'Key -> bool
Public Function Remove (key As TKey) As Boolean
Parameters
- key
- TKey
The key of the element to remove.
Returns
true
if the element is successfully removed; otherwise, false
. This method also returns false
if key
was not found in the original dictionary.