示例#1
0
        public static void GatherWordList()
        {
            string userInput = "";

            Console.WriteLine("Enter words one at a time to compare against. Enter 'Q' when done.");

            while (userInput != "q")
            {
                userInput = Console.ReadLine().ToLower();
                Anagram.Add(userInput);
            }
        }