c# - System.Threading.Timer is not firing -
in dll have 1 class uses system.threading.timer
in order execute particular method @ regular intervals. using dll in winform application, timer not firing.
it executing once eventhough maintaining reference timer.
any idea on why timer not working?
you either need set autoreset property true, or call start() again each time elapses.
Comments
Post a Comment