Hiya
Ok, so im writing a program that requires the hex of the int.. but not just this:
'cause that'll just return 0x18, which is just the same as me going:
Im after the 4 (maybe 8?) bytes of the int, that are stored in memory. How can I get at these?
Thanks!
Ok, so im writing a program that requires the hex of the int.. but not just this:
Code:
int myInt = 24; string myHex = myInt.ToString("X");
Code:
int myInt = 0x18;
Thanks!
Comment