在.net中设置Windows服务描述的最佳方式是什么?

前端之家收集整理的这篇文章主要介绍了在.net中设置Windows服务描述的最佳方式是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经使用VS2005模板创建了一个C#服务。它工作正常,但在Windows服务控件小程序中的服务描述是空白的。
创建一个ServiceInstaller并设置描述
private System.ServiceProcess.ServiceInstaller serviceInstaller = 
  new System.ServiceProcess.ServiceInstaller();
this.serviceInstaller.Description = "Handles Service Stuff";
原文链接:https://www.f2er.com/windows/372698.html

猜你在找的Windows相关文章