Beispiel #1
0
 private static void Check(HashTable hashTable)
 {
     Console.Write("Введите строку: ");
     string newString = Console.ReadLine();
     if (hashTable.Exist(newString))
         Console.WriteLine("Данный элемент существует!");
     else
         Console.WriteLine("Данного элемента не существует!");
 }