Esempio n. 1
0
        static void Main(string[] args)
        {
            LicenseHelper.CheckOutLicense();
            CheckAndCreateFolder();
            TaskMonitor monitor = new TaskMonitor();

            //monitor.Start();
            monitor.CheckImmediately();
            //20200826展示注释
            while (true)
            {
                ConsoleKeyInfo info = Console.ReadKey();
                if (info.Key == ConsoleKey.Escape)
                {
                    return;
                }
            }
            ;
        }