// If Else If Bot // A bot that has multiple connected if statements using System; namespace ChatBot { class IfElseIfBot : BasicBot { public override string HandleMessage(string message, string user) { if (message == "hi") { return "hello"; } else if (message == "hey") { return "hello"; } else if (message == "bye") { return "Alright, see you later"; } else { return "Good conversation. Let's keep it rolling!"; } } } }