Ejemplo n.º 1
0
 private static void Add(HashTable hashTable)
 {
     Console.Write("Введите строку: ");
     string newString = Console.ReadLine();
     hashTable.Add(newString);
     Console.WriteLine("Элемент добавлен!");
 }