Beispiel #1
0
 public DbxmlShellProgram(string[] args)
 {
     originalArgs = new List <string>(args);
     watch        = new Stopwatch();
     //Settings = new CommandLineParserSettings(false);
     Parser  = new Parser(config => config.HelpWriter = Console.Error);
     Options = new DbxmlOptions();
 }
Beispiel #2
0
 public Program(string[] args)
 {
     originalArgs = new List <string>();
     foreach (string s in args)
     {
         originalArgs.Add(s);
     }
     watch   = new Stopwatch();
     Options = new DbxmlOptions();
     ConfigureCommandLine(args);
 }