VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-check-if-the-hashtable-contains-a-specific-key/

⇱ C# | Check if the Hashtable contains a specific Key - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Check if the Hashtable contains a specific Key

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.ContainsKey(Object) Method is used to check whether the Hashtable contains a specific key or not. Syntax:
public virtual bool ContainsKey(object key);
Parameter:
key: The key of type System.Object to locate in the Hashtable.
Return Type: It return true if the Hashtable contains an element with the specified key otherwise, false. The return type of this method is System.Boolean. Exception: This method can give ArgumentNullException if the key is null. Below given are some examples to understand the implementation in a better way: Example 1:
Output:
myTable contains the key
Example 2:
Comment

Explore