开发者

BitConverter VS ToString for Hex

开发者 https://www.devze.com 2023-03-08 09:48 出处:网络
Just wondering if someone could explain why the two following lines of code return \"different\" results? What causes the reversed values? Is this something to do with endianness?

Just wondering if someone could explain why the two following lines of code return "different" results? What causes the reversed values? Is this something to do with endianness?

int.MaxValue.ToString("X") //Result: 7FFFFFFF
BitConverter.开发者_如何学编程ToString(BitConverter.GetBytes(int.MaxValue)) //Result: FF-FF-FF-7F


int.MaxValue.ToString("X") outputs 7FFFFFFF, that is, the number 2147483647 as a whole.

On the other hand, BitConverter.GetBytes returns an array of bytes representing 2147483647 in memory. On your machine, this number is stored in little-endian (highest byte last). And BitConverter.ToString operates separately on each byte, therefore not reordering output to give the same as above, thus preserving the memory order.

However the two values are the same : 7F-FF-FF-FF for int.MaxValue, in big-endian, and FF-FF-FF-7F for BitConverter, in little-endian. Same number.


I would guess because GetBytes returns an array of bytes which BitConverter.ToString formatted - in my opinion - rather nicely

And also keep in mind that the bitwise represantattion may be different from the value! This depends where the most signigicant byte sits!

hth

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号