Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,922 questions

51,855 answers

573 users

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 203 views
1 answer 142 views
1 answer 147 views
147 views asked Feb 20, 2017 by avibootz
2 answers 164 views
164 views asked Apr 13, 2020 by avibootz
1 answer 159 views
1 answer 129 views
...