OperatingSystem.IsFreeBSDVersionAtLeast(Int32, Int32, Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
檢查 Linux 命令 uname
) 所傳回的 FreeBSD 版本 (是否大於或等於指定的版本。 這個方法可以用來保護在指定版本中新增的 API。
public static bool IsFreeBSDVersionAtLeast (int major, int minor = 0, int build = 0, int revision = 0);
static member IsFreeBSDVersionAtLeast : int * int * int * int -> bool
Public Shared Function IsFreeBSDVersionAtLeast (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
修訂版本號碼。
傳回
如果目前的應用程式是在 FreeBSD 上執行,且版本至少為參數中指定的值,則為 true
;否則為 false
。