C#: Convert Byte array into a float

Try

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

Leave a Comment