开发者

How to configure Visual Studio to show integers as decimals when debugging?

开发者 https://www.devze.com 2022-12-21 12:43 出处:网络
My Visual Studio 200开发者_开发问答8 debugger is showing integers as hexadecimals, how to correct that?Right click in the debug window and disable Hexadecimal Display.Right click any of the debugging

My Visual Studio 200开发者_开发问答8 debugger is showing integers as hexadecimals, how to correct that?


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.


If you want just specific values to appear as hex, add a ,x to the end of the debug expression, as in:

Value,x

0

精彩评论

暂无评论...
验证码 换一张
取 消