IDictionary.Remove(Object) Método

Definición

Quita el elemento con la clave especificada del objeto IDictionary.

public:
 void Remove(System::Object ^ key);
public void Remove (object key);
abstract member Remove : obj -> unit
Public Sub Remove (key As Object)

Parámetros

key
Object

Clave del elemento que se va a quitar.

Excepciones

key es null.

El objeto IDictionary es de solo lectura.

o bien

IDictionary tiene un tamaño fijo.

Ejemplos

En el ejemplo de código siguiente se muestra cómo implementar el Remove método . Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase IDictionary.

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;
        }
    }
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 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

Comentarios

Si el objeto IDictionary no contiene ningún elemento con la clave especificada, la interfaz IDictionary no sufre ningún cambio. No se inicia ninguna excepción.

Se aplica a