No threads displayed in the Threads Debug Window

backgroundworker, c#, visual-studio, visual-studio-2010, winforms

Solution

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.

Problem

I am trying to track my BackgroundWorker threads as described in this article the Threads Debug Windows is empty: And yes, I'm debugging. What am I missing?

Original source

Related problems