✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public static void Main ()
{Hashtable ht = new Hashtable();
ht.Add ( "ВНЗ", "МГУ");
ht.Add ( "Птах", "чиж");
ht.Add ( "Вітер", "пасат");
ht.Sort();
foreach (string str in ht.Keys)
Console.Write (str + ":" + ht [str] + ".");
}
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
C# oop_class