SyntaxFix
Write A Post
Hire A Developer
Questions
Is using System.Threading.Timer mandatory?
System.Threading.Timer
If not, System.Timers.Timer has handy Start() and Stop() methods (and an AutoReset property you can set to false, so that the Stop() is not needed and you simply call Start() after executing).
System.Timers.Timer
Start()
Stop()
AutoReset