ReadOnlyDictionary(Of TKey, TValue).ICollection(Of KeyValuePair(Of TKey, TValue)).Remove Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Throws a NotSupportedException exception in all cases.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Private Function Remove ( _ item As KeyValuePair(Of TKey, TValue) _ ) As Boolean Implements ICollection(Of KeyValuePair(Of TKey, TValue)).Remove
Parameters
- item
- Type: System.Collections.Generic.KeyValuePair(Of TKey, TValue)
The object to remove from the dictionary.
Return Value
Type: System.Booleantrue if item was successfully removed from the dictionary; otherwise, false. This method also returns false if item is not found in the original dictionary.
Implements
ICollection(Of T).Remove(T)| Exception | Condition |
|---|---|
| NotSupportedException | In all cases. |
This member is an explicit interface member implementation. It can be used only when the ReadOnlyDictionary(Of TKey, TValue) instance is cast to an ICollection(Of T) interface. The ICollection(Of T) interface specifies that the Remove method should throw a NotSupportedException exception if the collection that implements the interface is read-only.