Exemplo n.º 1
0
        public IRCBotBase(BotConfig configuration)
            : this()
        {
            this.Configuration = configuration;

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