✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
using System;
using System.Collections;
class Program
{
public static void Main ()
{
Hashtable tab = new Hashtable();
tab.Add ( "Тип1", 2111);
tab.Add ( "Тип2", 2101);
foreach (string ob in tab.Keys) Console.Write (tab [ob] + "");
}
}
Серед перерахованих нижче кодів вкажіть всі коди, підстановка кожного з яких замість знаків підкреслення дозволяє отримати коректну програму, яка виведе на консоль повідомлення 2101 2111:
C# oop_class