PlatformID 枚举

定义

标识程序集所支持的操作系统(或平台)。

C#
public enum PlatformID
C#
[System.Serializable]
public enum PlatformID
C#
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum PlatformID
继承
PlatformID
属性

字段

MacOSX 6

操作系统为 Macintosh。 Silverlight 返回此值。 在 .NET Core 上,将替换为 Unix

Other 7

任何其他操作系统。 这包括浏览器 (WASM)。

Unix 4

操作系统为 Unix。

Win32NT 2

操作系统为 Windows NT 或较新的版本。

Win32S 0

操作系统为 Win32s(Win32 子集)类型。 不再使用此值。

Win32Windows 1

操作系统为 Windows 95 或 Windows 98。 不再使用此值。

WinCE 3

操作系统为 Windows CE。 不再使用此值。

Xbox 5

开发平台为 Xbox 360。 不再使用此值。

示例

以下示例演示如何使用 PlatformID 类标识当前正在执行的操作系统:

C#
// This example demonstrates the PlatformID enumeration.
using System;

class Sample
{
    public static void Main()
    {
    string msg1 = "This is a Windows operating system.";
    string msg2 = "This is a Unix operating system.";
    string msg3 = "ERROR: This platform identifier is invalid.";

// Assume this example is run on a Windows operating system.

    OperatingSystem os = Environment.OSVersion;
    PlatformID     pid = os.Platform;
    switch (pid)
        {
        case PlatformID.Win32NT:
        case PlatformID.Win32S:
        case PlatformID.Win32Windows:
        case PlatformID.WinCE:
            Console.WriteLine(msg1);
            break;
        case PlatformID.Unix:
            Console.WriteLine(msg2);
            break;
        default:
            Console.WriteLine(msg3);
            break;
        }
    }
}
/*
This example produces the following results:

This is a Windows operating system.
*/

注解

Environment.OSVersion使用和OperatingSystem.Platform属性获取PlatformID当前正在执行的操作系统或开发平台的枚举。 使用 PlatformID 枚举来帮助确定当前操作系统或开发平台是否支持应用程序。

可以使用每个 PlatformID 枚举成员的基础整数值作为 PlatformId SignTool.exe (符号工具) 实用工具的参数。

适用于

产品 版本
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 2.0, 2.1