Wehn I debug and reach a breakpoint I can see only the local variables in the Locals tab in visual studio 2008.
where to observe the global data structures, variables in visual studio?
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.
In the
Watchwindow. TheLocaltab is for local variables, as the name clearly suggests.You’ll need to add the variable manually. You can go to the quick-watch window –
Ctrl + Alt + Q, enter the variable name there, and pressAdd Watch. The variable will be added to the Watch window.