csharp 如何在没有的情况下调试或测试Windows服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 如何在没有的情况下调试或测试Windows服务相关的知识,希望对你有一定的参考价值。

static class Program
{
    static void Main()
    {
        #if(!DEBUG)
           ServiceBase[] ServicesToRun;
           ServicesToRun = new ServiceBase[] 
	   { 
	        new MyService() 
	   };
           ServiceBase.Run(ServicesToRun);
         #else
           MyService myServ = new MyService();
           myServ.Process();
           // here Process is my Service function
           // that will run when my service onstart is call
           // you need to call your own method or function name here instead of Process();
         #endif
    }
}

以上是关于csharp 如何在没有的情况下调试或测试Windows服务的主要内容,如果未能解决你的问题,请参考以下文章

如何在没有错误消息或异常的情况下调试 PowerShell 进程

dockertoolbox在没网情况下打开

如何为具有spring存储库代码的@Component类编写集成测试?

普通路由器在没刷openwrt的情况下怎么抓包

运行/调试你的PHP代码

在没有的查询的返回中插入日期