OperatingSystem(PlatformID, Version) 构造函数

定义

使用指定的平台标识符值和版本对象来初始化 OperatingSystem 类的新实例。

public:
 OperatingSystem(PlatformID platform, Version ^ version);
public OperatingSystem (PlatformID platform, Version version);
new OperatingSystem : PlatformID * Version -> OperatingSystem
Public Sub New (platform As PlatformID, version As Version)

参数

platform
PlatformID

PlatformID 值之一,指示操作系统平台。

version
Version

Version 对象,指示操作系统的版本。

例外

version 上声明的默认值为 null

platform 不是一个 PlatformID 枚举值。

调用方说明

如果使用 OperatingSystem 类检索有关运行时操作系统的信息,则不应调用此构造函数来实例化对象 OperatingSystem 。 相反,可以从属性中检索 OperatingSystem 描述操作系统 OSVersion 的对象。

适用于