使用环境类检查进程是否以用户交互模式运行的 C# 程序
在 C# 中,环境类提供有关当前平台的信息并操作当前平台。它对于获取和设置各种与操作系统相关的信息很有用。我们可以使用它来检索命令行参数信息、退出代码信息、环境变量设置信息、调用堆栈信息的内容以及自上次系统启动以来的时间(以毫秒为单位)信息。通过使用一些预定义的方法,我们可以使用 Environment 类获取操作系统的信息。在本文中,我们将讨论如何检查进程是否在用户交互模式下运行。所以我们使用 Environment 类的UserInteractive属性。该属性用于检查进程是否在用户交互模式下运行。如果进程在用户交互模式下运行,它将返回 true。否则,返回假。
句法:
Environment.UserInteractive
返回类型:此属性的返回类型是布尔值。如果进程在用户交互模式下运行,则返回 true;如果进程未在用户交互模式下运行,则返回 false
例子:
C#
// C# program to determine whether a process is
// running in user interactive mode or not
// Using Environment class
using System;
class GFG{
static public void Main()
{
// Declare a variable
bool result;
// Checking the process is running in user
// interactive mode or not
// Using the UserInteractive property
result = Environment.UserInteractive;
// Displaying the result
if (result == true)
Console.WriteLine("Yes! the process is running " +
"in user interactive mode");
else
Console.WriteLine("No! the process is not running " +
"in user interactive mode");
}
}
输出:
Yes! the process is running in user interactive mode