标签: c# double bytearray converter
我有一个程序设置,使用C#将双值读入字节数组。 该值设置为1.0,但我得到的字节数组结果是63和128。
例如:
Byte[] array; // gets result //result I get... the 0th value - 63 the 1st value - 128
如何将这些值转换回double(1.0)?