OperatingSystem.IsOSPlatformVersionAtLeast Method

Definition

Checks if the operating system version is greater than or equal to the specified platform version. This method can be used to guard APIs that were added in the specified OS version.

public static bool IsOSPlatformVersionAtLeast (string platform, int major, int minor = 0, int build = 0, int revision = 0);

Parameters

platform
String

The case-insensitive platform name. Examples: Browser, Linux, FreeBSD, Android, iOS, macOS, tvOS, watchOS, Windows.

major
Int32

The major release number.

minor
Int32

The minor release number (optional).

build
Int32

The build release number (optional).

revision
Int32

The revision release number (optional).

Returns

true if the current application is running on the specified platform and is at least in the version specified in the parameters; false otherwise.

Applies to

Product Versions
.NET 5, 6, 7, 8, 9