摘要:
1:新建一个WINDOWS服务项目; 2:打开自动生成的Server1的源代码,可以在其中看到OnStart与OnStop方法,代表的是服务的启动与关闭; 3:将事件日志中的写日志的方法COPY到Service1类中: public void WriteLog(string logName, string SourceName, string LogText, EventLogEntryType type) { // Create an EventLog instance and assign its source. EventLog el = new EventLog(... 阅读全文