0

使用一些服务创建了简单的 WCF 服务项目。如何Main()在控制台应用程序、Application_Start()WPF App.cs 或 ASP.NET global.asax.cs 中定义项目条目逻辑?

4

1 回答 1

0

Put the logic in the static constructor of the Service class. If Service is IService1, put it in

static Service1() {

}

It will be called only once one service start.

于 2013-07-07T15:24:17.393 回答