IDictionary.Remove-Methode
Entfernt das Element mit dem angegebenen Schlüssel aus dem IDictionary-Objekt.
Namespace: System.Collections
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Sub Remove ( _
key As Object _
)
'Usage
Dim instance As IDictionary
Dim key As Object
instance.Remove(key)
void Remove (
Object key
)
void Remove (
Object^ key
)
void Remove (
Object key
)
function Remove (
key : Object
)
Parameter
- key
Der Schlüssel des zu entfernenden Elements.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
key ist NULL (Nothing in Visual Basic). |
|
Das IDictionary-Objekt ist schreibgeschützt. – oder – IDictionary hat eine feste Größe. |
Hinweise
Wenn das IDictionary-Objekt kein Element mit dem angegebenen Schlüssel enthält, bleibt IDictionary unverändert. Es wird keine Ausnahme ausgelöst.
Beispiel
Das folgende Codebeispiel veranschaulicht das Implementieren der Remove-Methode. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die IDictionary-Klasse.
Public Sub Remove(ByVal key As Object) Implements IDictionary.Remove
If key = Nothing Then
Throw New ArgumentNullException("key")
End If
' Try to find the key in the DictionaryEntry array
Dim index As Integer
If TryGetIndexOfKey(key, index) Then
' If the key is found, slide all the items up.
Array.Copy(items, index + 1, items, index, (ItemsInUse - index) - 1)
ItemsInUse = ItemsInUse - 1
Else
' If the key is not in the dictionary, just return.
End If
End Sub
public void Remove(object key)
{
if (key == null) throw new ArgumentNullException("key");
// Try to find the key in the DictionaryEntry array
Int32 index;
if (TryGetIndexOfKey(key, out index))
{
// If the key is found, slide all the items up.
Array.Copy(items, index + 1, items, index, ItemsInUse - index - 1);
ItemsInUse--;
}
else
{
// If the key is not in the dictionary, just return.
}
}
public:
virtual void Remove(Object^ key)
{
if (key == nullptr)
{
throw gcnew ArgumentNullException("key");
}
// Try to find the key in the DictionaryEntry array
int index;
if (TryGetIndexOfKey(key, &index))
{
// If the key is found, slide all the items down.
Array::Copy(items, index + 1, items, index, itemsInUse -
index - 1);
itemsInUse--;
}
else
{
// If the key is not in the dictionary, just return.
return;
}
}
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
IDictionary-Schnittstelle
IDictionary-Member
System.Collections-Namespace