www.abhisheksur.com
Hashtable hTable = new Hashtable(); hTable.Add("d", "FDASFASD"); // can any type of object hTable.Add("e", 1); // remove the object hTable.Remove("e"); hTable.Remove("DD"); // even if "DD" key doesn't exsits, it will not throw any error
Login to post response