class program { public static void Main(string[] args) { FileStream fs = new FileStream("I:\\powprod.$25", FileMode.Open); byte[] by = new byte[fs.Length]; fs.Read(by, 0, (int)fs.Length); fs.Close(); int i = 0; while (i <= by.Length - 1) { float sh = BitConverter.ToSingle(by, i); Console.WriteLine(sh.ToString("r")); i += 4; } Console.Read(); } }