VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-count-the-number-of-key-value-pairs-in-the-hashtable/

⇱ C# | Count the number of key/value pairs in the Hashtable - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Count the number of key/value pairs in the Hashtable

Last Updated : 11 Jul, 2025
The Hashtable class represents a collection of key-and-value pairs that are organized based on the hash code of the key. The key is used to access the items in the collection. Hashtable.Count Property is used to get the total number of the key/value pairs contained in the Hashtable. Syntax:
myTable.Count
Here, myTable is the name of the Hashtable. Below given are some examples to understand the implementation in a better way: Example 1:
Output:
4
Example 2:
Comment

Explore