Using(ServiceHost host =new ServiceHost(typeof(XXService)))
{
host.open +=delegate
console.write("服务已启动!");
host.open();
Console.Read();
}
host.open +=delegate 是什么意思
订阅事件处理程序
http://msdn.microsoft.com/zh-cn/library/ms366768.ASPX
推荐园子里的一篇博文:C# 中的委托和事件
委托