using System; public class Test { public static void Main() { var data = new byte[] { 0x91, 0x2a, 0xb4,0x41 }; var coord = BitConverter.ToSingle(data, 0); Console.WriteLine(coord); } }