By implementing idisposable you will be able to tidy up any internal resources that also implement idisposable such as your timer.
In addition you would be able to change your calling code to use the using statment.
using SomeClass someClass = new SomeClass()
{
someClass.DoSomething();
}
