show/hide this revision's text 2 added 191 characters in body

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.

show/hide this revision's text 1

Generally speaking you should always dispose of disposable resources. I certainly would be looking to in the case you outline above.