up vote 57 down vote favorite
14
share [g+] share [fb]

I have 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).

I am making a game, and I plan on using all types of events, with different intervals, etc.

Which would be the best?

link|improve this question

feedback

2 Answers

up vote 45 down vote accepted

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|improve this answer
9  
I think this excerpt is enlightening: "Unlike the System.Windows.Forms.Timer, the System.Timers.Timer class will, by default, call your timer event handler on a worker thread obtained from the common language runtime (CLR) thread pool. [...] The System.Timers.Timer class provides an easy way to deal with this dilemma—it exposes a public SynchronizingObject property. Setting this property to an instance of a Windows Form (or a control on a Windows Form) will ensure that the code in your Elapsed event handler runs on the same thread on which the SynchronizingObject was instantiated." – mico Oct 19 '10 at 9:53
feedback

In the book CLR Via C#, Jeff Ritcher discourage using System.Timers.Timer, this timer is derived from System.ComponentModel.Component, allowing it to be used in design surface of Visual Studio. So that it would be only useful if you want a timer on a design surface.

He prefers to use System.Threading.Timer for background tasks on a thread pool thread.

link|improve this answer
3  
It can be used in a design surface - it doesn't mean it has to be, and there are no detrimental effects from not doing so. Reading the article in the earlier answer to this question, the Timers.Timer seems much more preferable to Threading.Timer. – Steve Nov 16 '11 at 12:38
feedback

Your Answer

 
or
required, but never shown

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