Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
327 views

Shutting down a windows service that has threads

I have a windows service written in .NET 3.5 (c#) with a System.Threading.Timer that spawns several Threads in each callback. These are just normal threads (no Thread Pool) and I've set the ...
2
votes
4answers
785 views

Can I safely rely on IsBackground in Threads when the application terminates?

I'm running some background threads in the GUI. Currently I'm implementing a personal Thread cancellation code but there is IsBackground property in threads and according MSDN they'll cancel ...