📜  使用环境类获取计算机操作系统版本的C#程序

📅  最后修改于: 2022-05-13 01:55:46.922000             🧑  作者: Mango

使用环境类获取计算机操作系统版本的C#程序

在 C# 中,环境类提供有关当前平台的信息并操作当前平台。它对于获取和设置各种与操作系统相关的信息很有用。我们可以使用它来检索命令行参数信息、退出代码信息、环境变量设置信息、调用堆栈信息的内容以及自上次系统启动以来的时间(以毫秒为单位)信息。在本文中,我们将讨论如何获取计算机的操作系统版本。所以我们使用 Environment 类的OSVersion属性。此属性返回系统或平台标识符的当前操作系统版本。如果此属性未获取系统的当前版本或不属于 PlatformID 的平台标识符,它还将返回 InvalidOperationException。

句法:

返回:返回 平台标识符或系统版本。

例子:

在下面的示例中,使用 Environment 类的 OsVersion 属性,我们可以找到我们计算机系统的当前操作系统版本。

C#
// C# program to get the current operating
// system version of the computer 
// Using Environment Class
using System;
using System.Collections;
  
class GFG
{
  
    static public void Main()
    {
  
        // Display the current OS version of the system 
        // Using OSVersion property of the Environment class
        Console.WriteLine("The current operating System version is " +
                          Environment.OSVersion);
    }
}


输出:

The current operating System version is Unix 20.3.0.0