Exemplo n.º 1
0
 internal CommandBuilder(ArgsParserBuilder parentBuilder, string commandName, string description)
 {
     this.parentBuilder = parentBuilder;
     isDefaultCommand   = false;
     commandDefinition  = new CommandDefinition(commandName, description);
 }
Exemplo n.º 2
0
 internal CommandBuilder(ArgsParserBuilder parentBuilder)
 {
     this.parentBuilder = parentBuilder;
     isDefaultCommand   = true;
     commandDefinition  = new DefaultCommandDefinition();
 }