Hi, I have a windows service in which I have used a Timer to run the process on some time interval.
and In the timer I have used Used Thread for the process. Now On stop event I have aborted the thread but did not closed or dispose the timer. Now I have got a problem that I have stopped the service. But I am getting Emails from the service on the specified time. Unable to understand that when the service is stopped then from where the code is running.
Now I want to understand that whether the timer is running in back ground, IF yes then from where Can I see that and if not the How is running my code.
Thanks