El método OrderedDictionary.Add(Object, Object) se usa para agregar una entrada con la clave y el valor especificados en la colección OrderedDictionary con el índice más bajo disponible.
Sintaxis:
public void Add (object key, object value);
Parámetros:
clave : La clave de la entrada a agregar.
value : El valor de la entrada a agregar. Este valor puede ser nulo.
Excepciones:
- NotSupportedException: si la colección OrderedDictionary es de solo lectura.
- ArgumentException: si ya existe un elemento con la misma clave en la colección OrderedDictionary.
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to add key and value // into OrderedDictionary using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver method public static void Main() { // Creating a orderedDictionary named myDict OrderedDictionary myDict = new OrderedDictionary(); // Adding key and value in myDict myDict.Add("key1", "value1"); myDict.Add("key2", "value2"); myDict.Add("key3", "value3"); myDict.Add("key4", "value4"); myDict.Add("key5", "value5"); // Displaying the number of key/value // pairs in myDict Console.WriteLine(myDict.Count); // Displaying the key/value pairs in myDict foreach(DictionaryEntry de in myDict) Console.WriteLine(de.Key + " --> " + de.Value); } }
Producción:
5 key1 --> value1 key2 --> value2 key3 --> value3 key4 --> value4 key5 --> value5
Ejemplo 2:
// C# code to add key and value // into OrderedDictionary using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver method public static void Main() { // Creating a orderedDictionary named myDict OrderedDictionary myDict = new OrderedDictionary(); // Adding key and value in myDict myDict.Add("key1", "value1"); myDict.Add("key2", "value2"); // This should raise "ArgumentException" // as an element with the same key already // exists in the OrderedDictionary collection. myDict.Add("key2", "value3"); myDict.Add("key4", "value4"); myDict.Add("key5", "value5"); // Displaying the number of key/value // pairs in myDict Console.WriteLine(myDict.Count); // Displaying the key/value pairs in myDict foreach(DictionaryEntry de in myDict) Console.WriteLine(de.Key + " --> " + de.Value); } }
Error de tiempo de ejecución:
Excepción no controlada:
System.ArgumentException: el elemento ya se ha agregado. Clave en el diccionario: ‘clave2’ Clave que se agrega: ‘clave2’
Nota: una clave no puede ser nula, pero un valor sí puede serlo.
Referencia:
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA