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:
Example 2: