IDictionary.Remove Method
.NET Framework 2.0
Removes the element with the specified key from the IDictionary.
Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration Function Remove ( _ key As TKey _ ) As Boolean 'Usage Dim instance As IDictionary(Of TKey, TValue) Dim key As TKey Dim returnValue As Boolean returnValue = instance.Remove(key)
boolean Remove ( TKey key )
function Remove ( key : TKey ) : boolean
Not applicable.
Parameters
- key
The key of the element to remove.
Return Value
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the original IDictionary.Implementations can vary in how they determine equality of objects; for example, the List class uses Comparer.Default, whereas the Dictionary class allows the user to specify the IComparer implementation to use for comparing keys.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: