I need to design / implement a time scheduler where I can create all possible time scenarios.
eg.
1) the timer should be able to start at certain intervals
2) the user should be able to determine specific dates.
3) the user can define a daily task, excluding specific days or dates (for example, every day except Tuesday).
.....
And basically, the user should be able to identify any possible (crazy :)) scenario. Is there a ready-made solution for implementing this? In C #, you can set timers to fire periodically or on a specific date, but are there methods to combine these functions? I'm basically looking for something like "Schedule Tasks" on Windows
source
share