Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

My Visual Studio takes All integer, long variable value as hexadecimal

I have a problem regarding my visual studio 2005. I initialized an integer variable and attach debugger to it to check its value at run time. When I run the application, the value of variable it shows is hexadecimal equivalent to value initialized.

How can change it to show in decimal?

Thank you

like image 212
user92027 Avatar asked Apr 17 '09 08:04

user92027


2 Answers

Right-click on the value (such as in the "Locals" panel) and uncheck "Hexadecimal Display".

like image 81
tylerl Avatar answered Nov 01 '22 15:11

tylerl


Right-click the value in the viewer, select the menu item labelled "Hexadecimal Display", and remove the checkmark.

like image 22
unwind Avatar answered Nov 01 '22 17:11

unwind