I'm using Threading.Timer, like:
new System.Threading.Timer(
new System.Threading.TimerCallback(x=>
file.Write(DateTime.Now.ToString())
), null, 0, 600000);
And, for example it starts at 11:00:00, then i get in file:
11:00:00
11:10:00
11:20:00
...
12:10:00
12:19:59
12:29:59
Why? from some time it begins to do such things? I've tried other timers, like Timers.Timer, and winforms Timer, the same situation. It's depressing me.
EDIT: Solution with accuratetimer which posted in the thread, didnt help. What about win32 multimedia timer, can it help?