C# 程序使用环境类获取当前机器的处理器数量
环境类提供有关当前平台的信息并操作当前平台。它对于获取和设置各种与操作系统相关的信息很有用。我们可以使用它来检索命令行参数信息、退出代码信息、环境变量设置信息、调用堆栈信息的内容以及自上次系统启动以来的时间(以毫秒为单位)信息。在本文中,我们将讨论如何获取当前机器的处理器数量。因此,我们使用 Environment 类的ProcessorCount属性。此属性返回当前进程中存在的处理器计数。
句法:
Environment.ProcessorCount
返回类型:该属性的返回类型是 32 位有符号整数。
例子:
C#
// C# program to find the number of processors of
// the current machine using Environment class
using System;
class GFG{
static public void Main()
{
// Declare a variable
int result;
// Now find the number of processors
// of the current machine
// Using ProcessorCount property
result = Environment.ProcessorCount;
// Display the result
Console.WriteLine("Total number of processors " +
"in current process is " + result);
}
}
输出:
Total number of processors in current process is 4