Search code examples
c#scheduling

Run once a day in C#


Is there any clever method out there to make my executeEveryDayMethod() execute once a day, without having to involve the Windows TaskScheduler?


Solution

  • Take a look at quartz.net. It is a scheduling library for .net.

    More specifically take a look here.