SortedDictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Remove(TValue) Method
Definition
Removes the first occurrence of a specific object from the ICollection<T>. This implementation always throws a NotSupportedException.
virtual bool System.Collections.Generic.ICollection<TValue>.Remove(TValue item) = System::Collections::Generic::ICollection<TValue>::Remove;
bool ICollection<TValue>.Remove (TValue item);
abstract member System.Collections.Generic.ICollection<TValue>.Remove : 'Value -> bool
override this.System.Collections.Generic.ICollection<TValue>.Remove : 'Value -> bool
Function Remove (item As TValue) As Boolean Implements ICollection(Of TValue).Remove
Parameters
- item
- TValue
The object to remove from the ICollection<T>.
Returns
true
if item
is successfully removed from the ICollection<T>; otherwise, false
. This method also returns false
if item
is not found in the ICollection<T>.
Implements
Exceptions
Always thrown; the collection is read-only.
Remarks
Implementations can vary in how they determine equality of objects; for example, List<T> uses Default, whereas SortedDictionary<TKey,TValue> allows the user to specify the IComparer<T> implementation to use for comparing keys.