vote up 0 vote down star

I would like to convert an Int32 in the range 0-15 into a the corresponding char in hexadecimal. One really dummy solution consists in writing

var hex = new[] {'0', '1', '2', '3', '4', '5', '6', '7', 
                 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
var myCharInHex = hex[myValue];

Yet, this solution looks plain wrong, any better suggestion?

flag
1  
if you are completely sure that your int is always in that range and you want a mapping of int->char I find your solution plain excellent :) – Frank Jun 8 at 15:30
Duplicate of stackoverflow.com/questions/74148/… – Binary Worrier Jun 8 at 15:32

2 Answers

vote up 4 vote down check

That works for your exact specification, but I'd personally do it as:

private static readonly char[] HexDigits = "0123456789abcdef".ToCharArray();
link|flag
vote up 1 vote down

This simple code must work:

string hexValue = myValue.ToString("X");
link|flag
1  
but it returns a string, not a char – tanascius Jun 8 at 15:35

Your Answer

Get an OpenID
or

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