// Concatenation Example 2 Bot // A simple example of string concatenation using System; namespace ChatBot { class ConcatenationExample2Bot : BasicBot { public override string HandleMessage(string message, string user) { string firstName = "Piston"; string lastName = "Honda"; string fullName = firstName + " " + lastName; return fullName; } } }