
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Check if the StringDictionary contains a specific key in C#
To check if the StringDictionary contains a specific key, the code is as follows −
Example
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); strDict1.Add("A", "John"); strDict1.Add("B", "Andy"); strDict1.Add("C", "Tim"); strDict1.Add("D", "Ryan"); strDict1.Add("E", "Kevin"); strDict1.Add("F", "Katie"); strDict1.Add("G", "Brad"); Console.WriteLine("StringDictionary1 elements..."); foreach(DictionaryEntry d in strDict1){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("Does StringDictionary1 has key G? "+strDict1.ContainsKey("G")); StringDictionary strDict2 = new StringDictionary(); strDict2.Add("A", "John"); strDict2.Add("B", "Andy"); strDict2.Add("C", "Tim"); strDict2.Add("D", "Ryan"); strDict2.Add("E", "Kevin"); strDict2.Add("F", "Katie"); strDict2.Add("G", "Brad"); Console.WriteLine("
StringDictionary2 elements..."); foreach(DictionaryEntry d in strDict2){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("
Is Dictionary2 equal to Dictionary1? = "+strDict2.Equals(strDict1)); } }
Output
This will produce the following output −
StringDictionary1 elements... a John b Andy c Tim d Ryan e Kevin f Katie g Brad Does StringDictionary1 has key G? True StringDictionary2 elements... a John b Andy c Tim d Ryan e Kevin f Katie g Brad Is Dictionary2 equal to Dictionary1? = False
Example
Let us see another example −
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); strDict1.Add("A", "John"); strDict1.Add("B", "Andy"); strDict1.Add("C", "Tim"); strDict1.Add("D", "Ryan"); strDict1.Add("E", "Kevin"); strDict1.Add("F", "Katie"); strDict1.Add("G", "Brad"); Console.WriteLine("StringDictionary1 elements..."); foreach(DictionaryEntry d in strDict1){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("Does StringDictionary1 has key G? "+strDict1.ContainsKey("G")); StringDictionary strDict2 = new StringDictionary(); strDict2.Add("A", "John"); strDict2.Add("B", "Andy"); strDict2.Add("C", "Tim"); strDict2.Add("D", "Ryan"); strDict2.Add("E", "Kevin"); strDict2.Add("F", "Katie"); strDict2.Add("G", "Brad"); Console.WriteLine("
StringDictionary2 elements..."); foreach(DictionaryEntry d in strDict2){ Console.WriteLine(d.Key + " " + d.Value); } Console.WriteLine("
Is Dictionary2 equal to Dictionary1? = "+strDict2.Equals(strDict1)); Console.WriteLine("Does StringDictionary2 has key B? "+strDict2.ContainsKey("B")); } }
Output
This will produce the following output −
StringDictionary1 elements... a John b Andy c Tim d Ryan e Kevin f Katie g Brad Does StringDictionary1 has key G? True StringDictionary2 elements... a John b Andy c Tim d Ryan e Kevin f Katie g Brad Is Dictionary2 equal to Dictionary1? = False Does StringDictionary2 has key B? True
- Related Articles
- Check if the StringDictionary contains a specific value in C#
- Check if the Hashtable contains a specific Key in C#
- Check if ListDictionary contains a specific key in C#
- Check if OrderedDictionary collection contains a specific key in C#
- Check whether a SortedList object contains a specific key in C#?
- Check whether a Hashtable contains a specific key or not in C#
- Check if the Hashtable contains a specific value in C#
- Check if the SortedSet contains a specific element in C#
- Check if a SortedList object contains a specific value in C#
- Check if StringDictionary is synchronized in C#
- Check if SortedDictionary contains the specified key or not in C#
- Check the HybridDictionary for a specific key in C#
- How to check if the string contains the specific word?
- How to check if a Perl hash already contains a key?
- Add key and value into StringDictionary in C#

Advertisements