public static void Main() { Console.Clear(); Console.ForegroundColor = ConsoleColor.DarkYellow; TypeLine("Hello Word Conter"); TypeLine("To start playing first enter a word"); string word = Console.ReadLine().ToLower(); Console.ForegroundColor = ConsoleColor.DarkGreen; TypeLine("Now enter a sentence"); string sentence = Console.ReadLine().ToLower(); RepeatCounter newCounter = new RepeatCounter(word, sentence); int userResult = newCounter.RepeatWord(); Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("The word you entered " + word + "repeats " + userResult + " times in your sentence."); }