Mega Code Archive

 
Categories / C# by API / System Collections
 

HashTable Remove

using System; using System.Collections; class MainClass {   static void Main(string[] args)   {     Hashtable a = new Hashtable(10);                a.Add(100, "A");     a.Add(200, "C");          a.Remove(100);     a.Remove(200);   } }