Reputation: 391
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
Upvotes: 8
Views: 3674
Reputation: 399959
Right-click the value in the viewer, select the menu item labelled "Hexadecimal Display", and remove the checkmark.
Upvotes: 8
Reputation: 30867
Right-click on the value (such as in the "Locals" panel) and uncheck "Hexadecimal Display".
Upvotes: 19