public static string PlatformVersion { get; }Public Shared ReadOnly Property PlatformVersion As String
GetIf you wish to convert the Platform version into a Double value, you should parse the string using the invariant culture as follows:
double platformVersion = Double.Parse(PlatformUtilities.PlatformVersion, CultureInfo.InvariantCulture)
If you just wish to test whether the platform is greater than a particular level, you can use the IsMinimumRequiredVersion method.