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