using System;
using System.Collections;
class Program
{
static void Main() {
Hashtable ht = new Hashtable();
ht.Add("1", "c#");
ht.Add("2", "c");
ht.Add("3", "php");
ht.Add("4", "java");
ht.Add("5", "python");
foreach (DictionaryEntry item in ht) {
Console.WriteLine(item.Key + " - " + item.Value);
}
}
}
/*
run:
2 - c
3 - php
5 - python
1 - c#
4 - java
*/