using System.Collections;
public static void Main()
Hashtable ht = new Hashtable();
Console.WriteLine("Number of elements: {0}", ht.Count);
string strValue1 = (string)ht[2];
string strValue2 = (string)ht["Fv"];
float fValue = (float) ht[8.5F];
Console.WriteLine(strValue1);
Console.WriteLine(strValue2);
Console.WriteLine(fValue);