windows service doesn't run at regular intervals
问题 I have developed windows service for checking some services running or not for every two minutes.if the services are not running then start them automatically. here is my code public partial class Service1 : ServiceBase { public Service1() { InitializeComponent(); } protected override void OnStart(string[] args) { this.CheckServices(); this.ScheduleService(); } protected override void OnStop() { this.Schedular.Dispose(); } public void CheckServices() { log4net.Config.BasicConfigurator