📜  用于检查操作系统是否为 64 位操作系统或不使用环境类的 C# 程序

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

用于检查操作系统是否为 64 位操作系统或不使用环境类的 C# 程序

环境类提供有关当前平台的信息并操作当前平台。它对于获取和设置各种与操作系统相关的信息很有用。我们可以使用它来检索命令行参数信息、退出代码信息、环境变量设置信息、调用堆栈信息的内容以及自上次系统启动以来的时间(以毫秒为单位)信息。在本文中,我们将讨论如何使用 Environment 类检查正在运行的操作系统是否为 64 位操作系统。所以我们需要使用 Environment 类的Is64BitOperatingSystem属性。该属性用于检查正在运行的操作系统是否基于 64 位架构,如果是 64 位操作系统则返回 true,否则返回 false。

句法:

Environment.Is64BitOperatingSystem

返回类型:此属性的返回类型为布尔值。如果操作系统是 64 位操作系统,则返回 true。否则,它将返回 false。

例子:

C#
// C# program to check whether the given
// OS is 64-bit Os or not. Using the
// Environment class
using System;
  
class GFG{
  
static public void Main()
{
      
    // Declaring a variable of bool type
    // to store the result
    bool outresult;
      
    // Now we determine the current operating system 
    // is 64-bit OS or not. Using the Is64BitOperatingSystem
    // property of Environment class
    outresult = Environment.Is64BitOperatingSystem;
      
    // Display the result
    if (outresult == true)
        Console.WriteLine("Yes! the current operating " +
                          "system is 64-bit OS");
    else
        Console.WriteLine("No! the current operating " + 
                          "system is not 64-bit OS");
}
}


输出:

Operating System is based 64-bit architecture

当我们在 32 位系统中运行相同的代码时,输出将是:

Operating System is not based 64-bit architecture