コード例 #1
0
        private void frmMain_Load(object sender, EventArgs e)
        {
            bot.Connect();

            Console.ReadLine();

            bot.Disconnect();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: un1tT/TwitchChatBot
        static void Main(string[] args)
        {
            TwitchChatBot bot = new TwitchChatBot();

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