Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

OperatingSystem.IsMacOSVersionAtLeast(Int32, Int32, Int32) Method

Definition

Namespace:
System
Assemblies:
netstandard.dll, System.Runtime.dll
Source:
OperatingSystem.cs
Source:
OperatingSystem.cs
Source:
OperatingSystem.cs
Source:
OperatingSystem.cs
Source:
OperatingSystem.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Checks if the macOS version (returned by libobjc.get_operatingSystemVersion) is greater than or equal to the specified version. This method can be used to guard APIs that were added in the specified macOS version.

public static bool IsMacOSVersionAtLeast(int major, int minor = 0, int build = 0);
static member IsMacOSVersionAtLeast : int * int * int -> bool
Public Shared Function IsMacOSVersionAtLeast (major As Integer, Optional minor As Integer = 0, Optional build As Integer = 0) As Boolean

Parameters

major
Int32

The major release number.

minor
Int32

The minor release number.

build
Int32

The build release number.

Returns

true if the current application is running on an macOS version that is at least what was specified in the parameters; false otherwise.

Applies to


Feedback

Was this page helpful?