我想調試窗口服務。我應該在main()中寫入以在窗口服務中啓用調試。我正在開發使用C#的窗口服務。調試窗口服務
#if(DEBUG)
System.Diagnostics.Debugger.Break();
this.OnStart(null);
System.Threading.Thread.Sleep(System.Threading.Timeout.Infinite);
#else
ServiceBase.Run(this);
#endif
我寫上面的代碼段,但上線(這
您的問題尚未完成。 –
可能[重複](http://stackoverflow.com/questions/125964/easier-way-to-start-debugging-a-windows-service-in-c)。 –