This translates the byte into an integer type:
byte[] array_of_bytes = new byte[]; Int16 integer_value = BitConverter.ToInt16(array_of_bytes, 0); - Int16 - C #
- Smallint - Pascal
Question: how to perform the same conversion of two bytes to mass into an integer value?
p :^smallint; p=@array_of_bytes[0]; array_of_integers = p^;p :^smallint; p=@array_of_bytes[0]; array_of_integers = p^;How to get rid of p - declare a reference type. - nick_n_a