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