我有一个大小为4的字节数组
byte[] source = new byte[4];
现在我想将此源转换为4字节的float值…
谁能告诉我该怎么做…
尝试
float myFloat = System.BitConverter.ToSingle(mybyteArray, startIndex);