OperatingSystem.IsWindowsVersionAtLeast(Int32, Int32, Int32, Int32) 方法

定义

检查) 返回的 RtlGetVersion Windows 版本 (是否大于或等于指定版本。 此方法可用于保护在指定 Windows 版本中添加的 API。

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

参数

major
Int32

主版本号。

minor
Int32

次要版本号。

build
Int32

内部版本号。

revision
Int32

修订版本号。

返回

如果当前应用程序正在运行的 Windows 版本不低于参数中指定的版本,则为 true;否则 false

适用于