vote up 0 vote down star

Hi all,

Any hints on parsing / converting / operating on hex values in c# ?

In particular I want to cast a decimal int to hex and then output as a string...

flag

43% accept rate

closed as exact duplicate by jop Oct 10 '08 at 8:43

2 Answers

vote up 1 vote down check
Int32 decValue = 42;
string hexValue = decValue.ToString("X");

Int32 decValue2 = Int32.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);

See this post:

http://stackoverflow.com/questions/74148/how-to-convert-numbers-between-hex-and-decimal-in-c

link|flag

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