vote up 6 vote down star
3

How do you convert between Hex numbers and decimal numbers in C#?

flag

7 Answers

vote up 0 vote down

Wow! In the time it took me to find out elsewhere and type my answer in I got 6 other answers. I hope looking elsewhere continues to be that pointless. This site is awesome!

Now, whose answer is the best...?

link|flag
I would pick the quickest correct answer. – vitule Sep 16 '08 at 16:45
vote up 16 vote down check

To convert from Decimal to Hex do...

string hexValue = decValue.ToString("X");

To convert from Hex to Decimal do either...

int decValue = int.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);

or

int decValue = Convert.ToInt32(hexValue, 16);
link|flag
vote up 0 vote down

Here is a link to the MSDN reference with the Formatting Numbers: http://msdn.microsoft.com/en-us/library/s8s7t687(VS.80).aspx

link|flag
vote up 2 vote down

Hex -> decimal:

Convert.ToInt64(hexValue, 16);

Decimal -> Hex

string.format("{0:x}", decValue);
link|flag
vote up 0 vote down

From geekpedia :

// Store integer 182
int decValue = 182;
// Convert integer 182 as a hex in a string variable
string hexValue = decValue.ToString("X");
// Convert the hex string back to the number
int decAgain = int.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);
link|flag
vote up 1 vote down

looks like you can say:

Convert.ToInt64(value, 16)

To get the Decimal from Hex, and the other way around:

otherVar.ToString("X");
link|flag
vote up 0 vote down
String stringrep = myintvar.ToString("X");

int num = int.Parse("FF", System.Globalization.NumberStyles.HexNumber);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.