问题描述
我是一个新手程序员,在我的电脑上有Visual Studio Update 3。我在调试时找不到显示变量值的窗口。
I am a newbie programmer, and have Visual Studio Update 3 on my computer. I cannot find the window that displays the values of variables as I am debugging.
我在名为Debug和Window的顶部下拉选项卡下查找,找不到任何东西。我不知道这个窗口是什么。请帮助。
I have looked under the pull-down tab at the top entitled "Debug" and "Window", and cannot find anything. I do not know exactly what the window is called either. Please help.
推荐答案
如果您要查找范围局部变量值或汽车:
,调试器运行,然后goto:
DEBUG => Windows => Autos
和
DEBUG => Windows => Locals
If you're looking for the scoped local variable values or Autos:you must first have the debugger running, then goto:DEBUG => Windows => AutosandDEBUG => Windows => Locals
或者,你可以在调试时突出显示一个变量名称和使用快速观看
Alternatively you can - while debugging - highlight a variable name and use the 'Quick Watch'
这篇关于Visual Studio 2013 - 调试中的变量值窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!