摘要:新建一个(VB.NET/C#)项目,选择Windows Service应用..然后在OnStart类里就可以添加代码了. 如果想实现定时运行,活实时监听的功能,可以用.NET 提供的TIMER类. 以下是代码片段. private void theTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { if (!ExCondition()) { return; } try { theTimer.Enabled = false; MyTransaction(); } catch(Exception es) { WriteL 阅读全文