StringDictionary es una colección especializada. Se encuentra en el espacio de nombres System.Collections.Specialized . Solo permite claves de string y valores de string. Sufre de problemas de rendimiento. Implementa una tabla hash con la clave y el valor tipificado fuertemente para que sean strings en lugar de objetos.
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to get or set the value // associated with the specified key // in StringDictionary using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating a StringDictionary named myDict StringDictionary myDict = new StringDictionary(); // Adding key and value into the StringDictionary myDict.Add("G", "GeeksforGeeks"); myDict.Add("C", "Coding"); myDict.Add("DS", "Data Structures"); myDict.Add("N", "Noida"); myDict.Add("GC", "Geeks Classes"); // Displaying the keys and values // in StringDictionary foreach(DictionaryEntry de in myDict) { Console.WriteLine(de.Key + " " + de.Value); } // To get the value corresponding to key "C" Console.WriteLine(myDict["C"]); // Changing the value corresponding to key "C" myDict["C"] = "C++"; // To get the value corresponding to key "C" Console.WriteLine(myDict["C"]); // To get the value corresponding to key "N" Console.WriteLine(myDict["N"]); // Changing the value corresponding to key "N" myDict["N"] = "North"; // To get the value corresponding to key "N" Console.WriteLine(myDict["N"]); // Displaying the keys and values // in StringDictionary foreach(DictionaryEntry de in myDict) { Console.WriteLine(de.Key + " " + de.Value); } } }
Producción:
gc Geeks Classes c Coding n Noida ds Data Structures g GeeksforGeeks Coding C++ Noida North c C++ g GeeksforGeeks gc Geeks Classes ds Data Structures n North
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