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(); }
public Program(string[] args) { originalArgs = new List <string>(); foreach (string s in args) { originalArgs.Add(s); } watch = new Stopwatch(); Options = new DbxmlOptions(); ConfigureCommandLine(args); }