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 themselves. I know that it's going to Thread.Abort() which is nasty but there is nothing going in this background threads that I need to keep a pro...