예제 #1
0
        /// <summary>
        /// The main entry function for the application.
        /// </summary>
        /// <param name="args">Command line arguments.</param>
        // ReSharper disable once UnusedParameter.Local
        static void Main(String[] args)
        {
            //Console.SetBufferSize(250, 20000);
            //Console.SetWindowSize(250, 50);
            Logger.Info("TwitchTally v" + Assembly.GetExecutingAssembly().GetName().Version + " started.");
            OutgoingQueue.Initialize();
            //ConnectToIrc();
            Boolean exitApplication = false;

            while (!exitApplication)
            {
                Console.Write("> ");
                exitApplication = ParseCommand(Console.ReadLine());
            }
            Close();
            Environment.Exit(1);
        }