- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check whether the Dictionary has the specified key or not in C#
To check whether the Dictionary<TKey,TValue> has the specified key or not, the code is as follows −
Example
using System; using System.Collections.Generic; public class Demo { public static void Main() { Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Count of elements = "+dict.Count); Console.WriteLine("
Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict) { Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } if (dict.ContainsKey("Three")) Console.WriteLine("Key found!"); else Console.WriteLine("Key isn't in the dictionary!"); dict.Clear(); Console.WriteLine("Cleared Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict) { Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } Console.WriteLine("Count of elements now = "+dict.Count); } }
Output
This will produce the following output −
Count of elements = 5 Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan Key found! Cleared Key/value pairs... Count of elements now = 0
Example
Let us see another example −
using System; using System.Collections.Generic; public class Demo { public static void Main() { Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Count of elements = "+dict.Count); Console.WriteLine("
Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict) { Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } if (dict.ContainsKey("mykey")) Console.WriteLine("Key found!"); else Console.WriteLine("Key isn't in the dictionary!"); dict.Clear(); Console.WriteLine("Cleared Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict) { Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } Console.WriteLine("Count of elements now = "+dict.Count); } }
Output
This will produce the following output −
Count of elements = 5 Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan Key isn't in the dictionary! Cleared Key/value pairs... Count of elements now = 0
- Related Articles
- Check if SortedDictionary contains the specified key or not in C#
- Check whether the Dictionary contains a specific value or not in C#
- Check whether the specified character has a surrogate code in C#
- Check whether a Hashtable contains a specific key or not in C#
- Python Pandas - Check whether the DateOffset value has been normalized or not
- Python Pandas - Check whether the BusinessDay Offset has been normalized or not
- Python Pandas - Check whether the BusinessHour Offset has been normalized or not
- Python Pandas - Check whether the CustomBusinessDay Offset has been normalized or not
- Python Pandas - Check whether the CustomBusinessHour Offset has been normalized or not
- How to check whether a key exist in JavaScript object or not?
- Check whether given key already exists in a dictionary in Python
- Check whether Enter key is pressed or not and display the result in console with JavaScript?
- Check whether the specified Unicode character is a letter or a decimal digit in C#
- Check whether a number has consecutive 0’s in the given base or not using Python
- Check whether the file is hidden or not in Java

Advertisements