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