如何配置 Visual Studio 在调试时将整数显示为小数?
我的 Visual Studio 2008 调试器将整数显示为十六进制,如何纠正该问题?
My Visual Studio 2008 debugger is showing integers as hexadecimals, how to correct that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在调试窗口中右键单击并禁用十六进制显示。
Right click in the debug window and disable Hexadecimal Display.
右键单击任何调试窗口并“取消选择”十六进制显示选项。 -
Right click any of the debugging windows and 'De-select' the Hexadecimal Display option. -
调试时右键单击任何变量,在工具提示中您可以打开/关闭十六进制显示。调试工具栏上还有一个十六进制按钮。
While debugging right click any variable and in the tooltip you can toggle Hex display on/off. There's also a Hex button on the debug toolbar.
如果您只想将特定值显示为十六进制,请将 ,x 添加到调试表达式的末尾,如下所示:
Value,x
If you want just specific values to appear as hex, add a ,x to the end of the debug expression, as in:
Value,x