I need timer which trigger tick event every day at specific hour (my input is hour, minute, second for every day in week).
I tried with ExtendedTimer (http://msdn.microsoft.com/en-us/library/cc543952.aspx).
Does anybody know what the third parameters mean?
When will this be triggered:
ExtendedTimer t = new ExtendedTimer(call, null, new DateTime(now.y, now.m, now.d + 1,12, 0, 0),24*3600);
Tommorow at 12:00 or like the msdn say tomorow at 12:00 after a little more then 2013 years? (The System.DateTime value that represents the amount of time the timer will wait before the callback method invokes its methods, in milliseconds. )