Check out example codes for "c# use hashtable check if key exists". It will help you in understanding the concepts better.
Code Example 1
// Create hashtable
Hashtable ht = new Hashtable();
// Add a key value pair
ht.Add("001",".Net");
// Check to see if key exists
ht.ContainsKey("001")
Learn ReactJs, React Native from akashmittal.com