System.PlatformID 枚举
方法描述
标识程序集所支持的操作系统(或平台)。
语法定义(C# System.PlatformID 枚举 的用法)
[SerializableAttribute] [ComVisibleAttribute(true)] public enum PlatformID
提示和注释
使用 Environment.OSVersion 和 OperatingSystem.Platform 属性可以获得当前正在执行的操作系统或开发平台的 PlatformID 枚举。 使用 PlatformID 枚举可帮助确定当前操作系统或开发平台是否支持您的应用程序。
System.PlatformID 枚举例子
下面的示例演示如何使用 PlatformID 类标识当前正在执行的操作系统。
// 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. */
继承层次结构
线程安全
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。