
When I continuously do "step into",it switches between different threads.
But how’s that scheduled in visual studio,how does it know which thread to activate for next instruction?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s not up to Visual Studio which thread runs next, it’s up to the Windows scheduler. There’s usually a way to “freeze” the other threads in the process so that they won’t run while you’re trying to look at a particular thread, though I don’t know how to do it in Visual Studio.
-scott