Exemplo n.º 1
0
 public bool VersionAboveOrEqual(string v)
 {
     return(UtilsCore.CompareVersions(Version, v) >= 0);
 }
Exemplo n.º 2
0
 public bool VersionUnder(string v)
 {
     return(UtilsCore.CompareVersions(Version, v) == -1);
 }