// Word of the Day Bot // Returns the word of the day using an RSS feed using System; namespace ChatBot { class WordDayBot : BasicBot { public override string HandleMessage(string message, string user) { return "Hey, the word of the day is: " + User.RSSgetDescription("http://www.dictionary.com/wordoftheday/wotd.rss"); } } }