La propiedad HybridDictionary.Count se utiliza para obtener el número de pares clave/valor contenidos en HybridDictionary.
Sintaxis:
public int Count { get; }
Valor devuelto: el número de pares clave/valor contenidos en HybridDictionary.
Nota: Recuperar el valor de esta propiedad es una operación O(1).
Los siguientes programas ilustran el uso de la propiedad HybridDictionary.Count :
Ejemplo 1:
// C# code to get the number of key/value // pairs contained in the HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating a HybridDictionary named myDict HybridDictionary myDict = new HybridDictionary(); // 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); } }
Producción:
Total key/value pairs in myDict are : 6
Ejemplo 2:
// C# code to get the number of key/value // pairs contained in the HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating a 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"); // 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 : 5
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