Time Event?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to write a program (windows service in C# to be exact) that a few
times throughout the day will raise an event to do some processing. Is there
any event, or async callback type deal that I can put in to say that at 6am
raise said event? I really don't want to use a timer since I've had bad luck
with them in the past in terms of memory consumption. Any help would be
appreciated, thank you.
 
You can use the windows integrated task scheduler and start your application
in scheduled intervals. This seems to me the simplest way of doing this. I
believe there is a way to interact with the task scheduler (to schedule
tasks programmatically etc.)
 
Back
Top