コード例 #1
0
ファイル: Version.cs プロジェクト: prunkster/db-migrator-net
 /**
  * @param other_version compares this version against other_version
  * @return true if this is higher than other (means larger, newer)
  */
 public bool IsHigherThan(Version otherVersion)
 {
     return GetVersion() > otherVersion.GetVersion();
 }