Search code examples
c#hexsigned-integer

Convert binary to signed int/decimal


I am trying to convert hex data to signed int/decimal and can't figure out what I'm doing wrong.

I need FE to turn into -2.

I'm using Convert.ToInt32(fields[10], 16) but am getting 254 instead of -2.

Any assistance would be greatly appreciated.


Solution

  • int is 32 bits wide, so 0xFE is REALLY being interpreted as 0x000000FE for the purposes of Convert.ToInt32(string, int), which is equal to 254 in the space of int.

    Since you're wanting to work with a signed byte range of values , use Convert.ToSByte(string, int) instead (byte is unsigned by default, so you need the sbyte type instead).

    Convert.ToSByte("FE",16)