C#: Convert Byte array into a float

对着背影说爱祢 提交于 2019-12-27 17:45:11

问题


I have a byte array of size 4

byte[] source = new byte[4];

Now I wanted to convert this source into a 4-byte float value...

Can anyone tell me how to do this...


回答1:


Try

float myFloat = System.BitConverter.ToSingle(mybyteArray, startIndex);



来源:https://stackoverflow.com/questions/2619664/c-convert-byte-array-into-a-float

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!