HybridDictionary() crea un HybridDictionary vacío que distingue entre mayúsculas y minúsculas .
Sintaxis:
public HybridDictionary ();
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera:
Ejemplo 1:
// C# code to create an empty // case-sensitive HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating an empty case-sensitive // HybridDictionary named myDict HybridDictionary myDict = new HybridDictionary(); // Adding key/value pairs in myDict 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 II second III third IV fourth V fifth
Ejemplo 2:
// C# code to create an empty // case-sensitive HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating an empty case-sensitive // HybridDictionary named myDict HybridDictionary myDict = new HybridDictionary(); // Adding key/value pairs in myDict myDict.Add("A", "Apple"); // To show that the HybridDictionary is // case-sensitive 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); } }
Producción:
A Apple a Air B Banana C Cat D Dog d Dolphine E Elephant F Fish
Nota:
- De forma predeterminada, la colección distingue entre mayúsculas y minúsculas.
- El comparador determina si dos claves son iguales. Cada clave en un HybridDictionary debe ser única.
- Este constructor es una operación O(1).
Referencia:
- https://docs.microsoft.com/en-us/dotnet/api/system.collections.specialized.hybriddictionary.-ctor?view=netframework-4.7.2#System_Collections_Specialized_HybridDictionary__ctor
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