Пример #1
0
        public sonny()
        {
            Thought thought = new Thought();

            RespondToUser(thought.SayHello());
            RespondToUser("How are you?");
            string input = Console.ReadLine();

            switch (input)
            {
            case "Good":
            case "good":
            case "great":
            case "Great":
                RespondToUser("That's good!");
                break;

            default:
                RespondToUser("I don't know what that means, but I'm good!");
                break;
            }
            RespondToUser("This is the part where you tell me what to do.");
        }