Is it necessary to dispose System.Timers.Timer if you use one in your application? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:03:35Z http://stackoverflow.com/feeds/question/475763 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application 2 Is it necessary to dispose System.Timers.Timer if you use one in your application? Roman Shumikhin 2009-01-24T09:01:12Z 2009-04-30T09:52:17Z <p>I am using System.Timers.Timer class in one of the classes in my application. I know that Timer class has Dispose method inherited from the parent Component class that implements IDisposable interface. Instances of the class below are created many times during my application lifecycle; each of them has an instance of Timer class that generates Elapsed events continuously during the class's lifecycle. Should I implement IDisposable interface in the class that uses Timer class to dispose the timer object? (I have seen code that doesn't do this at all). I am afraid that some unmanaged resources will not be freed if I use the class below like this:</p> <pre><code>SomeClass someClass = new SomeClass(); someClass.DoSomething(); someClass = null; </code></pre> <p>The class:</p> <pre><code>using System.Timers; public class SomeClass { private Timer m_timer; public SomeClass() { m_timer = new Timer(); m_timer.Interval = 1000; m_timer.Elapsed += new ElapsedEventHandler(m_timer_Elapsed); m_timer.AutoReset = false; m_timer.Start(); } public void DoSomething() { } private void m_timer_Elapsed(object sender, ElapsedEventArgs e) { try { //Do some task } catch (Exception ex) { //Ignore } finally { if (m_timer != null) { //Restart the timer m_timer.Enabled = true; } } } } </code></pre> http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application/475768#475768 8 Answer by flesh for Is it necessary to dispose System.Timers.Timer if you use one in your application? flesh 2009-01-24T09:08:19Z 2009-01-24T09:14:25Z <p>Generally speaking you should always dispose of disposable resources. I certainly would be looking to in the case you outline above. If you implement IDisposable on the class that implements the timer you can then use the class in a using statement, meaning resources will be explicitly released when your class is disposed.</p> http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application/475773#475773 2 Answer by 1800 INFORMATION for Is it necessary to dispose System.Timers.Timer if you use one in your application? 1800 INFORMATION 2009-01-24T09:15:01Z 2009-01-24T09:15:01Z <p>I would guess that the timer object creates or uses a worker thread for the purposes of firing the timer events. The dispose call will free the thread and the resources associated with it. If that is the case, it would be a good idea to call dispose so you don't have unused threads hanging around too long.</p> http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application/475809#475809 2 Answer by John for Is it necessary to dispose System.Timers.Timer if you use one in your application? John 2009-01-24T09:50:49Z 2009-04-30T09:52:17Z <p>By implementing idisposable you will be able to tidy up any internal resources that also implement idisposable such as your timer. </p> <p>In addition you would be able to change your calling code to use the using statment.</p> <pre><code>using SomeClass someClass = new SomeClass() { someClass.DoSomething(); } </code></pre> http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application/475941#475941 2 Answer by Rowland Shaw for Is it necessary to dispose System.Timers.Timer if you use one in your application? Rowland Shaw 2009-01-24T12:15:43Z 2009-01-24T12:15:43Z <p>The rule of thumb I use is to make anything that has an IDisposable object, IDisposable itself (and disposing the child objects only when Dispose is explicitly called)</p> <p>There's a good discussion on IDisposable at <a href="http://www.bluebytesoftware.com/blog/PermaLink.aspx?guid=88e62cdf-5919-4ac7-bc33-20c06ae539ae" rel="nofollow">Joe Duffy's blog</a> along with code samples which look very similar to those in my copy of the excellent <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidelines</a> book</p> http://stackoverflow.com/questions/475763/is-it-necessary-to-dispose-system-timers-timer-if-you-use-one-in-your-application/803459#803459 1 Answer by GregC for Is it necessary to dispose System.Timers.Timer if you use one in your application? GregC 2009-04-29T17:37:26Z 2009-04-29T17:37:26Z <p>I agree with Rowland.</p> <p>There is a rule in FxCop that finds classes containing Disposable objects, but not properly implementing IDisposable.</p>