Open In App

C# | Get the number of key/value pairs contained in ListDictionary

Last Updated : 01 Feb, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

ListDictionary.Count property is used to get the number of key/value pairs contained in the ListDictionary.

Syntax:

public int Count { get; }

Return Value : The number of key/value pairs contained in the ListDictionary.

Below are the programs to illustrate the use of ListDictionary.Count property:

Example 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);
    }
}


Output:

6

Example 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);
    }
}


Output:

5

Note: Retrieving the value of this property is an O(1) operation.

Reference:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads