I found out that when you highlight the variable and right click you get a menu. At the bottom of the menu you can check Hexadecimal display. Thanks everyone.
D
dougins
@dougins
Posts
-
I am getting 0x00000096 type messages. -
I am getting 0x00000096 type messages.While I am performing calculations my debug answers are showing up like 0x00000096. Can I set a propery to display the actual numbers. Can someone help? Thanks. Dougins
-
How to get the last day of the month.I need to get the last day of the month, like April is 30. Does anyone know the code for C# to get the last day of the month?
-
Working with percentages in C#I have the following code: double numdaysPercentage; numdaysPercentage = 14/30; I get an answer like 0.0. I should get an answer like .4666667 Can someone tell me what I am doing wrong.
-
C#, How to check an object to see if it is a numeric value?Can we put it an if statement? If (isNumeric(myObject) { return myObject }
-
C#, How to check an object to see if it is a numeric value?C#, How to check an object to see if it is a numeric value? something like this? if (IsNumeric(intnumber)) { return intnumber } else { return 0 }