I am currently doing a project and am a novice to c#. I have a problem where i receive serial 'dataframes', each consisting of two
8-bit values (the high byte and the low byte), which have to be
constructed to get a 16-bit value. This assembled value is already in
two's complement and I need to get the original value.
eg :- 1. LowByte = 0xFE HighByte = 0xFF Answer should equal -2
2. LowByte = 0x03 HighByte = 0x00 Answer should equal +3