Last Updated : 11 Jul, 2025
The Hashtable class represents a collection of
key-and-value pairsthat are organized based on the hash code of the key. The key is used to access the items in the collection.
Hashtable.ContainsValue(Object) Methodis used to check whether the Hashtable contains a specific value or not.
Syntax:public virtual bool ContainsValue(object value);Parameter:
value: The value of type System.Object to locate in the Hashtable. The value can be null.Return Type:
This method returns
trueif the Hashtable contains an element with the specified
valueotherwise it returns
false. The return type of this method is
System.Boolean. Below given are some examples to understand the implementation in a better way:
Example 1: CSHARP
// C# code to check if the HashTable
// contains a specific Value
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Hashtable
Hashtable myTable = new Hashtable();
// Adding elements in Hashtable
myTable.Add("g", "geeks");
myTable.Add("c", "c++");
myTable.Add("d", "data structures");
myTable.Add("q", "quiz");
// check if the HashTable contains
// the required Value or not.
if (myTable.ContainsValue("c++"))
Console.WriteLine("myTable contains the Value");
else
Console.WriteLine("myTable doesn't contain the Value");
}
}
Output:
myTable contains the ValueExample 2: CSHARP
// C# code to check if the HashTable
// contains a specific Value
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Hashtable
Hashtable myTable = new Hashtable();
// Adding elements in Hashtable
myTable.Add("India", "Country");
myTable.Add("Chandigarh", "City");
myTable.Add("Mars", "Planet");
myTable.Add("China", "Country");
// check if the HashTable contains
// the required Value or not.
if (myTable.ContainsKey("Ocean"))
Console.WriteLine("myTable contains the Value");
else
Console.WriteLine("myTable doesn't contain the Value");
}
}
Output:
myTable doesn't contain the ValueReference:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4