Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Params arguments = Params.ParseParams(args);
     if(arguments.IsValid)
     {
         BatchProcessor processor = new BatchProcessor(arguments);
         processor.Run();
     }
 }
Exemplo n.º 2
0
        private static void Main(string[] args)
        {
            {
                Params arguments = new Params(args);

                if (arguments.IsValid)
                {
                    BatchProcessor processor = new BatchProcessor(arguments);
                    processor.Run();
                }
                arguments = null;
            }
        }
Exemplo n.º 3
0
        private static void Main(string[] args)
        {
            {
                Params arguments = new Params(args);


                if (arguments.IsValid)
                {
                    BatchProcessor processor = new BatchProcessor(arguments);
                    processor.Run();
                }
                arguments = null;
            }
        }
Exemplo n.º 4
0
        private static void Main(string[] args)
        {
            // ContextTesting is a class that has been temporarily created to test multiple files
            // ContextTesting.Run();
            // return;

            var arguments = new Params(args);

            if (!arguments.IsValid)
            {
                return;
            }
            var processor = new BatchProcessor(arguments);

            processor.Run();
        }