IDictionary.Remove(Object) Método

Definición

Quita el elemento con la clave especificada del objeto IDictionary.

C#
public void Remove (object key);

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.

C#
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.
    }
}

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

Producto Versiones
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0