Exemple #1
0
        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();
        }
Exemple #2
0
        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();
        }