Abstractions.Windows.OsInfo.IsVistaOrLater C# (CSharp) Method

IsVistaOrLater() public static method

public static IsVistaOrLater ( ) : bool
return bool
        public static bool IsVistaOrLater()
        {
            OperatingSystem sys = System.Environment.OSVersion;

            if (sys.Platform == PlatformID.Win32NT &&
                sys.Version.Major >= 6)
                return true;

            return false;
        }