using System;
using System.Collections;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
Hashtable hashtable = new Hashtable();
hashtable.Add("c#", 100);
hashtable.Add("c", 101);
hashtable.Add("c++", 102);
hashtable.Add("java", 107);
foreach (DictionaryEntry dic in hashtable)
{
Console.WriteLine("{0}, {1}", dic.Key, dic.Value);
}
}
}
}
/*
run:
java, 107
c++, 102
c, 101
c#, 100
*/