public bool IsVersion(CommandVersion version) { if (this == version) { return(true); } return(false); }
public AppName(string name, CommandVersion version, CommandCopyright copyright) { this.copyright = copyright; this.version = version; this.name = name; }
public AppName(string name, CommandVersion version) { this.name = name; this.version = version; copyright = CommandCopyright.EMPTY; }