Ejemplo n.º 1
0
Archivo: Program.cs Proyecto: eier/sbc
        static void Main(string[] args)
        {
            LogistikHase lh = new LogistikHase(args[0]);
            lh.Work();

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

            lh.Stop();
            Console.ReadLine();
        }
Ejemplo n.º 2
0
Archivo: Program.cs Proyecto: eier/sbc
        static void Main(string[] args)
        {
            LogistikHase lh = new LogistikHase(args[0]);

            lh.Work();

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

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