Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No threads displayed in the Threads Debug Window

I am trying to track my BackgroundWorker threads as described in this article the Threads Debug Windows is empty:

enter image description here

And yes, I'm debugging.

What am I missing?

like image 992
ateiob Avatar asked Oct 30 '12 15:10

ateiob


1 Answers

You need to pause your application first; the debugger will not display anything while your code is running.

You can either set a breakpoint and wait until it gets hit, or click the Pause button to break immediately.

like image 170
SLaks Avatar answered Sep 24 '22 04:09

SLaks