IDictionary<TKey, TValue>.Remove Method (TKey)
.NET Framework 4.6 and 4.5
Removes the element with the specified key from the IDictionary<TKey, TValue>.
Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll)
Parameters
- key
- Type: TKey
The key of the element to remove.
Return Value
Type: System.Booleantrue if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original IDictionary<TKey, TValue>.
| Exception | Condition |
|---|---|
| ArgumentNullException | key is null. |
| NotSupportedException | The IDictionary<TKey, TValue> is read-only. |
Implementations can vary in how they determine equality of objects; for example, the List<T> class uses Comparer<T>.Default, whereas the Dictionary<TKey, TValue> class allows the user to specify the IComparer<T> implementation to use for comparing keys.
The following code example shows how to remove a key/value pair from a dictionary using the Remove method.
This code is part of a larger example that can be compiled and executed. See System.Collections.Generic.IDictionary<TKey, TValue>.
.NET Framework
Supported in: 4.6, 4.5, 4, 3.5, 3.0, 2.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1XNA Framework
Supported in: 3.0, 2.0, 1.0.NET for Windows Phone apps
Supported in: Windows Phone 8.1, Windows Phone Silverlight 8.1, Windows Phone Silverlight 8Portable Class Library
Supported in: Portable Class Library
Show: