views:

230

answers:

4

My Visual Studio 2008 debugger is showing integers as hexadecimals, how to correct that?

+2  A: 

Right click in the debug window and disable Hexadecimal Display.

Simon Linder
A: 

Right click any of the debugging windows and 'De-select' the Hexadecimal Display option. -

S.Skov
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
+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