Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Please insert your word");
            string input = Console.ReadLine();
            Word testword = new Word();
            char output = testword.FindNonRepeated(input);

            Console.WriteLine("This is your first unrepeated character:{0}", output);

            Console.Read();
        }