El constructor HybridDictionary(Boolean) crea un HybridDictionary vacío con la distinción entre mayúsculas y minúsculas especificada.
Sintaxis:
public HybridDictionary (bool caseInsensitive);
Aquí, caseInSensible es un valor booleano que indica si HybridDictionary no distingue entre mayúsculas y minúsculas.
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to create an empty // HybridDictionary with the // specified case sensitivity. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating an empty HybridDictionary // with the specified case sensitivity. HybridDictionary myDict = new HybridDictionary(false); // Adding key/value pairs in myDict myDict.Add("I", "first"); myDict.Add("i", "first"); myDict.Add("II", "second"); myDict.Add("III", "third"); myDict.Add("IV", "fourth"); myDict.Add("V", "fifth"); // Displaying the key/value pairs in myDict foreach(DictionaryEntry de in myDict) Console.WriteLine(de.Key + " " + de.Value); } }
Producción:
I first i first II second III third IV fourth V fifth
Ejemplo 2:
// C# code to create an empty // HybridDictionary with the // specified case sensitivity. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating an empty HybridDictionary // with the specified case sensitivity. HybridDictionary myDict = new HybridDictionary(true); // Adding key/value pairs in myDict myDict.Add("A", "Apple"); myDict.Add("a", "Air"); myDict.Add("B", "Banana"); myDict.Add("C", "Cat"); myDict.Add("D", "Dog"); myDict.Add("d", "Dolphine"); myDict.Add("E", "Elephant"); myDict.Add("F", "Fish"); // 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: ya existe una entrada con la misma clave.
en System.Collections.Specialized.ListDictionary.Add
Nota: este constructor es una operación O(1).
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