I understand that in a visual studio there is no real way to do this. Unlike Eclipse: D. The best thing you can do is use the Threads debug window to freeze all threads other than the ones you want to debug.
As stated in the comments, you can also use a conditional breakpoint and set a filter of type ThreadNameToStopOn == Thread.CurrentThread.Name
source
share