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.
|
|
||||
|
|
|
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.)
|
|||||||
|
|
Do it manually! |
|||
|
|
|
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. |
|||
|
|
|
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.
|
|||||||||||
|