示例#1
0
 public ArgumentModel Named(string longName)
 {
     CommandLineModel.ValidateLongName(longName, false);
     return(this.Named(default, longName));
示例#2
0
 public ArgumentModel Named(char shortName)
 {
     CommandLineModel.ValidateShortName(shortName, false);
     return(this.Named(shortName, null));
 }