Exemplo n.º 1
0
        private void frmMain_Load(object sender, EventArgs e)
        {
            bot.Connect();

            Console.ReadLine();

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

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