using System.Collections;
public static void Main()
Hashtable ht = new Hashtable();
foreach (DictionaryEntry ob in ht)
Console.WriteLine(ob.Key + " " + ob.Value);
foreach (DictionaryEntry ob in ht)
Console.WriteLine(ob.Key + " " + ob.Value);
IDictionaryEnumerator e = ht.GetEnumerator();
string str = e.Key.ToString() + " " + e.Value.ToString();