System.Threading.Timer Doesn't Trigger my TimerCallBack Delegate
- by Tom Kong
Hi,
I am writing my first Windows Service using C# and I am having some trouble with my Timer class.
When the service is started, it runs as expected but the code will not execute again (I want it to run every minute)
Please take a quick look at the attached source and let me know if you see any obvious mistakes!
TIA
using System;
using…