My Visual Studio 2008 debugger is showing integers as hexadecimals, how to correct that?
views:
230answers:
4
+2
A:
Right click in the debug window and disable Hexadecimal Display.
Simon Linder
2010-02-23 13:55:33
A:
Right click any of the debugging windows and 'De-select' the Hexadecimal Display option. -
S.Skov
2010-02-23 13:55:36
A:
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.
Sakkle
2010-02-23 13:56:07
+1
A:
If you want just specific values to appear as hex, add a ,x to the end of the debug expression, as in:
Value,x
Marc Bernier
2010-02-23 16:49:15