// If Else Bot // If the user says cake, returns yum. Otherwise returns yuk using System; namespace ChatBot { class IfElseBot : BasicBot { public override string HandleMessage(string message, string user) { if(message == "cake") { return "Yum!"; } else { return "Yuk. No thanks."; } } } }