I have an array of bytes that I read from a header section of a message. These bytes contain the length of the message. There never are more than 3 bytes and they are ordered from LSB to MSB. So in the example below, 39 is the LSB and 2 is the MSB.
var data = new byte[] { 39, 213, 2 };
In the example above how can I take those bytes and convert to a number (int,short,etc)?
1 Answer