我想您在C#中的服務,我已經添加了System.ServiceProcess.dll
類型或命名空間名稱「的ServiceController」找不到
雖然我得到的錯誤:
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.");
}
}
我是否需要一個「使用」語句?
感謝您向我們展示如何找到它。 – DOK 2011-06-04 17:37:13
@DOK我的榮幸! – 2011-06-04 17:38:33