Example #1
0
        public IRCBotBase(BotConfig configuration)
            : this()
        {
            this.Configuration = configuration;

            if (Configuration == null)
                throw new ArgumentNullException("The configuration specified is null or invalid.");
        }
Example #2
0
 public TestBot(BotConfig configuration)
     : base(configuration)
 {
 }