I have a Windows Service implemented in C# that needs to do some work every so often. I\'ve implemented this using a System.Threading.Timer with a callback method t
System.Threading.Timer
Possible solution for protecting the callback method from working on a disposed timer:
https://stackoverflow.com/a/15902261/193178