Skip to content

Instantly share code, notes, and snippets.

@sasan-salem
Created March 31, 2021 07:34
Show Gist options
  • Save sasan-salem/65ddbe16a30f696b0105761341caca03 to your computer and use it in GitHub Desktop.
Save sasan-salem/65ddbe16a30f696b0105761341caca03 to your computer and use it in GitHub Desktop.
Hashtable hashtable = new Hashtable();
hashtable.Add("MyFirstKey", 1);
hashtable.Add("MySecondKey", true);
if(hashtable.Contains("MySecondKey")) //it call Equals
Console.WriteLine("I found it");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment