How can I use CreateTimerQueueTimer to create a high resolution timer in C#?

Posted by Justin Tanner on Stack Overflow See other posts from Stack Overflow or by Justin Tanner
Published on 2009-06-18T23:46:23Z Indexed on 2010/03/27 13:13 UTC
Read the original article Hit count: 462

Filed under:
|

I've used a Windows multimedia dll to created a high resolution timer with

timSetEvent()

But the timeSetEvent() page recommends the use of:

CreateTimerQueueTimer()

How can I use CreateTimerQueueTimer() to execute a method every 10 milliseconds in C#?

© Stack Overflow or respective owner

Related posts about c#

Related posts about timers