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 any
Try
float myFloat = System.BitConverter.ToSingle(mybyteArray, startIndex);