19

I have a multi threaded C# application and I want to see active threads of that process while running. Where can I see it?

ZygD
  • 2,577

2 Answers2

30

Open Task Manager (for example, by pressing Ctrl + Shift + Esc) and go to the Processes tab.

From the menu, select View > Select Columns... and enable Threads.

enter image description here

You can also achieve the same thing with Process Explorer.

sblair
  • 12,757
4

In Windows 10

Task manager -> Details -> (right click) Select columns -> (check) Threads

enter image description here

Mohan
  • 141