Last Updated : 11 Jul, 2025
This method is used to check whether the Dictionary<TKey,TValue> contains the specified key or not.
Syntax:public bool ContainsKey (TKey key);
Here, the
keyis the Key which is to be located in the Dictionary.
Return Value:This method will return
trueif the Dictionary contains an element with the specified key otherwise, it returns
false.
Exception:This method will give
ArgumentNullExceptionif the key is null. Below are the programs to illustrate the use of
Dictionary<TKey,TValue>.ContainsKey() Method:
Example 1: csharp
// C# code to check if a key is
// present or not in a Dictionary.
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Create a new dictionary of
// strings, with string keys.
Dictionary<string, string> myDict =
new Dictionary<string, string>();
// 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");
// Checking for Key "India"
if (myDict.ContainsKey("India"))
Console.WriteLine("Key : India is present");
else
Console.WriteLine("Key : India is absent");
}
}
Output:
Key : India is presentExample 2: csharp
// C# code to check if a key is
// present or not in a Dictionary.
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Create a new dictionary of
// strings, with string keys.
Dictionary<string, string> myDict =
new Dictionary<string, string>();
// 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");
// Checking for Key "USA"
if (myDict.ContainsKey("USA"))
Console.WriteLine("Key : USA is present");
else
Console.WriteLine("Key : USA is absent");
}
}
Output:
Key : USA is absentReference:
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