示例#1
0
文件: Program.cs 项目: eier/sbc
        static void Main(string[] args)
        {
            NestHase nh = new NestHase(args[0]);
            nh.Work();

            Console.WriteLine("Press any key to end...");
            Console.ReadLine();

            nh.Stop();
            Console.ReadLine();
        }
示例#2
0
文件: Program.cs 项目: eier/sbc
        static void Main(string[] args)
        {
            NestHase nh = new NestHase(args[0]);

            nh.Work();

            Console.WriteLine("Press any key to end...");
            Console.ReadLine();

            nh.Stop();
            Console.ReadLine();
        }