コード例 #1
0
 public HelpCommand(CommandContextBase commandContext)
     : base("help", true)
 {
     this.commandContext = commandContext;
     this.CommandName = string.Empty;
     this.SubCommandName = string.Empty;
 }
コード例 #2
0
 public VersionCommand(CommandContextBase commandContext)
     : base("--version", true)
 {
     this.commandContext = commandContext;
 }