For App Version, version string can with description 1.2.3.123.release.mi MAJOR.MINOR.PATCH.BUILD.DESC
Inheritance: IComparable, ICloneable
示例#1
0
 protected bool Equals(AppVersion other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     if (other.GetType() != this.GetType()) return false;
     return CompareTo(other) == 0;
 }