How to check if specific key exist in Hashtable in C#

1 Answer

0 votes
using System;
using System.Collections; 
                      
public class Program
{
    public static void Main()
    {
 		Hashtable ht = new Hashtable(); 
  
        ht.Add("c", "c#"); 
        ht.Add("a", "c++"); 
        ht.Add("d", "java"); 
        ht.Add("e", "c");         
		ht.Add("b", "php"); 
		
        Console.WriteLine(ht.Contains("a")); 
        Console.WriteLine(ht.Contains("z")); 
    }
}
  



/*
run:
  
True
False
  
*/

 



answered May 10, 2020 by avibootz

Related questions

2 answers 225 views
1 answer 159 views
1 answer 162 views
162 views asked Feb 20, 2017 by avibootz
2 answers 175 views
175 views asked Apr 13, 2020 by avibootz
1 answer 175 views
1 answer 144 views
...