tags:

views:

117

answers:

2

Windows Task Manager shows four threads for my simple C# Windows application. What are these for?

+5  A: 

There's good discussion on the topic on this thread:

http://bytes.com/topic/c-sharp/answers/588402-do-nothing-winform-app-using-4-threads

kbrimington
+6  A: 
  1. Main thread
  2. Debugger thread
  3. Finalizer thread
  4. GDI+ rendering thread

Source

Jon B