Пример #1
0
 public static string Script(string word)
 {
     while (!Counter.SingleWord(word))
     {
         Console.WriteLine("To check a sentence or paragraph to see if it contains a keyword, first enter a single keyword:");
         word = Console.ReadLine();
     }
     return(word);
 }