Represents a command line command of the Autheco
Exemplo n.º 1
0
        protected void check(string[] args, Command2 options)
        {
            ICommandLineParser parser = new CommandLineParser(new CommandLineParserSettings(Console.Error));

            if (!parser.ParseArguments(args, options))
            {
                Environment.Exit(1);
            }
        }
Exemplo n.º 2
0
 protected void check(string[] args, Command2 options)
 {
     ICommandLineParser parser = new CommandLineParser(new CommandLineParserSettings(Console.Error));
     if (!parser.ParseArguments(args, options)) Environment.Exit(1);
 }