IDictionaryEnumerator s = hashtable.GetEnumerator();
while (s.MoveNext())
{
MessageBox.Show(s.Key + s.Value.ToString());
}