コード例 #1
0
 public bool IsVersion(CommandVersion version)
 {
     if (this == version)
     {
         return(true);
     }
     return(false);
 }
コード例 #2
0
ファイル: AppName.cs プロジェクト: WinMister332/Commander
 public AppName(string name, CommandVersion version, CommandCopyright copyright)
 {
     this.copyright = copyright;
     this.version   = version;
     this.name      = name;
 }
コード例 #3
0
ファイル: AppName.cs プロジェクト: WinMister332/Commander
 public AppName(string name, CommandVersion version)
 {
     this.name    = name;
     this.version = version;
     copyright    = CommandCopyright.EMPTY;
 }