C# | Check if SortedDictionary contains the specified key or not Last Updated : 01 Feb, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report SortedDictionary<TKey, TValue>.ContainsKey(TKey) Method is used to check whether the SortedDictionary contains an element with the specified key or not. Syntax: public bool ContainsKey (TKey key); Here, the key is the Key which is to be located in the SortedDictionary. Returns Value: This method will return true if the Dictionary contains an element with the specified key otherwise, it returns false. Exception: This method will give ArgumentNullException if the key is null. Below are the programs to illustrate the use of the above-discussed method: Example 1: csharp // C# code to check if a key is // present or not in a SortedDictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. SortedDictionary<int, string> myDict = new SortedDictionary<int, string>(); // Adding key/value pairs in myDict myDict.Add(1, "C"); myDict.Add(2, "C++"); myDict.Add(3, "Java"); myDict.Add(4, "Python"); myDict.Add(5, "C#"); myDict.Add(6, "HTML"); // Checking for Key 4 if (myDict.ContainsKey(4)) Console.WriteLine("Key : 4 is present"); else Console.WriteLine("Key : 4 is absent"); } } Output: Key : 4 is present Example 2: csharp // C# code to check if a key is // present or not in a SortedDictionary. using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Create a new dictionary of // strings, with string keys. SortedDictionary<string, string> myDict = new SortedDictionary<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 absent Reference: https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.sorteddictionary-2.containskey?view=netframework-4.7.2 Comment More infoAdvertise with us Next Article C# | Check if SortedDictionary contains the specified key or not K Kirti_Mangal Follow Improve Article Tags : C# CSharp-method CSharp-Generic-Namespace CSharp SortedDictionary Class Similar Reads C# | Check if ListDictionary contains a specific key ListDictionary.Contains(Object) method is used to check whether the ListDictionary contains a specific key or not. Syntax: public bool Contains (object key); Here, key is the key to locate in the ListDictionary. Return Value: The method returns true if the ListDictionary contains an entry with the s 2 min read C# | Check if OrderedDictionary collection contains a specific key OrderedDictionary.Contains(Object) method is used to check whether the OrderedDictionary collection contains a specific key or not. Syntax: public bool Contains (object key); Here, key is the key to locate in the OrderedDictionary collection. Return Value: This method returns True if the OrderedDict 2 min read C# | Check whether a SortedList object contains a specific key SortedList.Contains(Object) Method is used to check whether a SortedList object contains a specific key. Syntax: public virtual bool Contains (object key); Here, key is the Key which is to be located in the SortedList object. Return Value: This method returns the true if the SortedList object contai 2 min read C# | Check if the SortedSet contains a specific element SortedSet class represents the collection of objects in sorted order. This class comes under the System.Collections.Generic namespace. SortedSet<T>.Contains(T) Method is used to check if a SortedSet contains a specific element or not. Properties: In C#, SortedSet class can be used to store, remov 2 min read C# | Check if the StringDictionary contains a specific key StringDictionary.ContainsKey(String) method is used to check whether the StringDictionary contains a specific key or not. Syntax: public virtual bool ContainsKey (string key); Here, key is the key to locate in the StringDictionary. Return Value: This method returns true if the StringDictionary conta 2 min read Like