Esempio n. 1
0
 public Parser(CommandRoot commandRoot, IEnumerable<string> helpFlags = null, string helpVerb = null)
 {
     _helpFlags = helpFlags ?? new[] { "-h" };
     _helpVerb = helpVerb ?? "help";
     CommandRoot = commandRoot;
 }
Esempio n. 2
0
 public CommandBuilder()
 {
     Root = new CommandRoot("Command");
 }