Every N minutes we want to run through a list of tasks. So we\'ve created a task executor with a
do { DoWork(); }while(!stopRequested)
No
You could use an ManualResetEvent that you set when it's time to stop, and then do a WaitOne on it.