Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The number is bigger than int & long but can be accomodated in Decimal. But the normal ToString or Convert methods don't work on Decimal.

share|improve this question

4 Answers

up vote 2 down vote accepted

I believe this will produce the right results where it returns anything, but may reject valid integers. I dare say that can be worked around with a bit of effort though... (Oh, and it will also fail for negative numbers at the moment.)

static string ConvertToHex(decimal d)
{
    int[] bits = decimal.GetBits(d);
    if (bits[3] != 0) // Sign and exponent
    {
        throw new ArgumentException();
    }
    return string.Format("{0:x8}{1:x8}{2:x8}",
        (uint)bits[2], (uint)bits[1], (uint)bits[0]);
}
share|improve this answer
Well, I didn't have my handy crib-sheet to hand! It isn't just negatives - it could fail for any integer with a non-zero scale, such as 100.00M. Re thinking alike, I imagine that protocol-buffers has a lot to do with it in this case ;-p – Marc Gravell Oct 21 '08 at 9:02
("crib sheet" was in relation to formatting) – Marc Gravell Oct 21 '08 at 9:02
I didn't have my crib-sheet to hand either, but I guessed until it worked :) I'll have to think about a normalize method for decimal. It shouldn't be that hard... – Jon Skeet Oct 21 '08 at 9:17

Do it manually!

http://www.permadi.com/tutorial/numDecToHex/

share|improve this answer

I've got to agree with James - do it manually - but don't use base-16. Use base 2^32, and print 8 hex digits at a time.

share|improve this answer

I guess one option would be to keep taking chunks off it, and converting individual chunks? A bit of mod/division etc, converting individual fragments...

So: what hex value do you expect?

Here's two approaches... one uses the binary structure of decimal; one does it manually. In reality, you might want to have a test: if bits[3] is zero, do it the quick way, otherwise do it manually.

    decimal d = 588063595292424954445828M;
    int[] bits = decimal.GetBits(d);
    if (bits[3] != 0) throw new InvalidOperationException("Only +ve integers supported!");
    string s = Convert.ToString(bits[2], 16).PadLeft(8,'0') // high
            + Convert.ToString(bits[1], 16).PadLeft(8, '0') // middle
            + Convert.ToString(bits[0], 16).PadLeft(8, '0'); // low
    Console.WriteLine(s);

    /* or Jon's much tidier: string.Format("{0:x8}{1:x8}{2:x8}",
            (uint)bits[2], (uint)bits[1], (uint)bits[0]);  */

    const decimal chunk = (decimal)(1 << 16);
    StringBuilder sb = new StringBuilder();
    while (d > 0)
    {
        int fragment = (int) (d % chunk);
        sb.Insert(0, Convert.ToString(fragment, 16).PadLeft(4, '0'));
        d -= fragment;
        d /= chunk;
    }
    Console.WriteLine(sb);
share|improve this answer
I expect the value : 7c86fdcb000000000004 – Jeff Atwood Oct 21 '08 at 8:47
Cool, that's what I get ;-p – Marc Gravell Oct 21 '08 at 8:55
Marc: We clearly think alike yet again, although I'd like to think my formatting code is somewhat simpler - if slower. I wonder how easy it would be to fix the "failing with some integers" problem. We really need a Normalize method in decimal :( – Jon Skeet Oct 21 '08 at 8:57
Normalize... well, changing the scale (via GetBits()) is easy enough - just need to check that it is an integer afterwads (or use Floor/Ceiling)... if only you had some kind of general purpose library that might host such a method... – Marc Gravell Oct 21 '08 at 9:07
Thanks a lot.... it worked for me.. – Kev Oct 21 '08 at 10:28
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.