gpt4 book ai didi

c# - 找不到类型或命名空间名称 'ServiceController'

转载 作者:可可西里 更新时间:2023-11-01 12:34:22 24 4
gpt4 key购买 nike

我正在尝试检查 C# 中的服务,我添加了 System.ServiceProcess.dll

虽然我得到了错误:

Error 2 The type or namespace name 'ServiceController' could not be found (are you missing a using directive or an assembly reference?) D:\App\Form1.cs 247 13 App

我的代码如下:

private void button13_Click(object sender, EventArgs e)
{
ServiceController sc = new ServiceController("Spooler");

if (sc.Status == ServiceControllerStatus.Running)
{
MessageBox.Show("The service is running.");
}
}

我可能需要一个“using”语句吗?

最佳答案

您需要添加对 System.ServiceProcess.dll 的引用

enter image description here

之后,您将能够在 Visual Studio 中看到它,作为您可以添加到项目中的 using 语句之一:

enter image description here

关于c# - 找不到类型或命名空间名称 'ServiceController',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6238295/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com