AcTools.Utils.Helpers.StringExtension.IsVersionNewerThan C# (CSharp) Method

IsVersionNewerThan() private method

private IsVersionNewerThan ( [ currentVersion, [ checkableVersion ) : bool
currentVersion [
checkableVersion [
return bool
        public static bool IsVersionNewerThan([CanBeNull] this string currentVersion, [CanBeNull] string checkableVersion) {
            return currentVersion.CompareAsVersionTo(checkableVersion) > 0;
        }