OperatingSystem.IsOSPlatformVersionAtLeast 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
檢查作業系統版本是否大於或等於指定的平台版本。 這個方法可以用來保護在指定的 OS 版本中新增的 API。
public static bool IsOSPlatformVersionAtLeast (string platform, int major, int minor = 0, int build = 0, int revision = 0);
static member IsOSPlatformVersionAtLeast : string * int * int * int * int -> bool
Public Shared Function IsOSPlatformVersionAtLeast (platform As String, major As Integer, Optional minor As Integer = 0, Optional build As Integer = 0, Optional revision As Integer = 0) As Boolean
參數
- platform
- String
平台名稱 (不區分大小寫)。 範例:Browser、Linux、FreeBSD、Android、iOS、macOS、tvOS、watchOS、Windows。
- major
- Int32
主要版本號碼。
- minor
- Int32
次要版本號碼 (選擇性)。
- build
- Int32
組建版本號碼 (選擇性)。
- revision
- Int32
修訂版本號碼 (選擇性)。
傳回
如果目前的應用程式是在指定平台上執行,且版本至少為參數中指定的值,則為 true
;否則為 false
。