Example #1
0
        private void frmMain_Load(object sender, EventArgs e)
        {
            bot.Connect();

            Console.ReadLine();

            bot.Disconnect();
        }
Example #2
0
        static void Main(string[] args)
        {
            TwitchChatBot bot = new TwitchChatBot();

            bot.Connect();
            Console.ReadLine();
            bot.Disconnect();
        }