OperatingSystem.IsOSPlatform(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出目前的應用程式是否正在指定的平台上執行。
public:
static bool IsOSPlatform(System::String ^ platform);
public static bool IsOSPlatform (string platform);
static member IsOSPlatform : string -> bool
Public Shared Function IsOSPlatform (platform As String) As Boolean
參數
- platform
- String
平台名稱 (不區分大小寫)。 範例:Browser、Linux、FreeBSD、Android、iOS、macOS、tvOS、watchOS、Windows。
傳回
如果目前的應用程式是在指定的平台上執行,則為 true
;否則為 false
。