How to configure Visual Studio to show integers as decimals when 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
精彩评论