标签: c# windows-services
我正在尝试创建一个Web服务来向Windows服务发送命令:停止,启动等等。 我添加了对System.ServiceProcess的引用并编译没有错误,但是在运行服务时它给了我这个错误。
类型或命名空间名称'ServiceProcess'不存在于 命名空间'系统'(您是否缺少程序集引用?)
提前谢谢!
答案 0 :(得分:2)
在解决方案资源管理器System.ServiceProcess.dll
System.ServiceProcess.dll
使用指令using System.ServiceProcess;
using System.ServiceProcess;