Exemplo n.º 1
0
Arquivo: Program.cs Projeto: 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();
        }
Exemplo n.º 2
0
Arquivo: Program.cs Projeto: 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();
        }