Thorin Oakenshield
Thorin Oakenshield

Reputation: 14662

Threads in c# windows application

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

Upvotes: 4

Views: 301

Answers (2)

user27414
user27414

Reputation:

  1. Main thread
  2. Debugger thread
  3. Finalizer thread
  4. GDI+ rendering thread

Source

Upvotes: 6

kbrimington
kbrimington

Reputation: 25642

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

Upvotes: 5

Related Questions