multithreading - Effect of IsBackground on .Net Threads? -


I know that when the main method is running and only other threads that are running are background threads, the application exits is. Whether or not the background threads do something different or react differently to any non-background threads besides delay in the end of the program?

No, they are similar to normal thread, except they do not prevent any process from ending.

Background threads are similar to foreground threads, except that background threads do not prevent any process from ending.


Comments