vote up 1 vote down star

Hey

Been checking out some of the possible timers lately, and the Threading.Timer and Timers.Timer are the ones that look needful to me (since they support thread pooling).

Timers.Timer: msdn.microsoft.com/en-us/library/system.timers.timer.aspx Threading.Timer: msdn.microsoft.com/en-us/library/system.threading.timer.aspx

I am making a game, and i plan on using all types of events, with different intervals etc. Which would be the best?

flag

57% accept rate
1  
dupe of stackoverflow.com/questions/418423/… and many others. – SnOrfus Sep 13 at 5:23

1 Answer

vote up 5 vote down check

This article offers a fairly comprehensive explanation:

http://msdn.microsoft.com/en-us/magazine/cc164015.aspx

The specific difference appears to be that System.Timers.Timer is geared towards multithreaded applications and is therefore thread-safe via its SynchronizationObject property, whereas System.Threading.Timer is ironically not thread-safe out-of-the-box.

I don't believe that there is a difference between the two as it pertains to how small your intervals can be.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.