C# | Método Dictionary.Remove

Este método se usa para eliminar el valor con la clave especificada del Dictionary<TKey,TValue>.

Sintaxis:

public bool Remove (TKey key);

Valor de retorno: este método devuelve verdadero si el elemento se encuentra y elimina con éxito; de lo contrario, devuelve falso . Este método devuelve falso si la clave no se encuentra en el Diccionario.

Excepción: este método dará ArgumentNullException si la clave es nula.

A continuación se muestran los programas para ilustrar el uso del método mencionado anteriormente:

Ejemplo 1:

// C# code to remove the entry with
// the specified key from the Dictionary
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Create a new dictionary of
        // strings, with string keys.
        Dictionary<string, string> myDict = 
          new Dictionary<string, string>();
  
        // Adding key/value pairs in myDict
        myDict.Add("Australia", "Canberra");
        myDict.Add("Belgium", "Brussels");
        myDict.Add("Netherlands", "Amsterdam");
        myDict.Add("China", "Beijing");
        myDict.Add("Russia", "Moscow");
        myDict.Add("India", "New Delhi");
  
        // To get count of key/value pairs in myDict
        Console.WriteLine("Total key/value pairs"+
              " in myDict are : " + myDict.Count);
  
        // Remove the entry with the specified 
        // key from the Dictionary
        myDict.Remove("Russia");
  
        Console.WriteLine("After remove operation");
  
        // To get count of key/value pairs in myDict
        Console.WriteLine("Total key/value pairs"+
              " in myDict are : " + myDict.Count);
    }
}
Producción:

Total key/value pairs in myDict are : 6
After remove operation
Total key/value pairs in myDict are : 5

Ejemplo 2:

// C# code to remove the entry with
// the specified key from the Dictionary
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Create a new dictionary of
        // strings, with string keys.
        Dictionary<int, int> myDict = 
           new Dictionary<int, int>();
  
        // Adding key/value pairs in myDict
        myDict.Add(9, 8);
        myDict.Add(3, 4);
        myDict.Add(4, 7);
        myDict.Add(1, 7);
  
        // To get count of key/value pairs in myDict
        Console.WriteLine("Total key/value pairs "+
                "in myDict are : " + myDict.Count);
  
        // Remove the entry with the specified
        // key from the Dictionary
        myDict.Remove(9);
  
        Console.WriteLine("After remove operation");
  
        // To get count of key/value pairs in myDict
        Console.WriteLine("Total key/value pairs in"+
                    " myDict are : " + myDict.Count);
    }
}
Producción:

Total key/value pairs in myDict are : 4
After remove operation
Total key/value pairs in myDict are : 3

Referencia:

Publicación traducida automáticamente

Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *