As stated in the title,
When is a System.Timers
Timer disposed?
In a scenario where I would run a console application and simply use the following code
var timer = new Timer( interval );
timer.Enabled = true;
timer.Elapsed += MainTimer_Elapsed;
Will the timer be disposed at some point or will it be "alive" forever? Note: With "forever" I mean until the application is closed.