Visual Studio 2010
To stop the debugger where it currently is, I normally use Break All
from Debug
menu.
However, now I'm multithreading, and this does show me a place in code, and it says this is where thread A is going to execute when task is back to it.
However, right now another thread is frozen somewhere, and I'd like to access the one which is currently running. How can I do that? To know the active thread and the last line of my code it did?