using System.Collections;
public static void Main()
Hashtable ht = new Hashtable();
if (ht.ContainsValue("Riya")) {
Console.WriteLine("This student name is already in the list");
ICollection key = ht.Keys;
foreach (string k in key) {
Console.WriteLine(k + ": " + ht[k]);