Dictionary<TKey, TValue>.Remove Method
.NET Framework 4.6 and 4.5
Removes the value with the specified key from the Dictionary<TKey, TValue>.
Namespace: System.Collections.Generic
Assemblies: mscorlib (in mscorlib.dll)
System.Collections (in System.Collections.dll)
Parameters
- key
- Type: TKey
The key of the element to remove.
Return Value
Type: System.Booleantrue if the element is successfully found and removed; otherwise, false. This method returns false if key is not found in the Dictionary<TKey, TValue>.
Implements
IDictionary<TKey, TValue>.Remove(TKey)| Exception | Condition |
|---|---|
| ArgumentNullException | key is null. |
If the Dictionary<TKey, TValue> does not contain an element with the specified key, the Dictionary<TKey, TValue> remains unchanged. No exception is thrown.
This method approaches an O(1) operation.
The following code example shows how to remove a key/value pair from a dictionary using the Remove method.
This code example is part of a larger example provided for the Dictionary<TKey, TValue> class (openWith is the name of the Dictionary used in this example).
.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: