Tce.RpcBinarySerializer.readDouble C# (CSharp) Method

readDouble() public static method

public static readDouble ( BinaryReader reader ) : double
reader System.IO.BinaryReader
return double
        public static double readDouble(BinaryReader reader)
        {
            byte[] bytes = reader.ReadBytes(8);
            double value = BitConverter.ToDouble(bytes, 0);
            return value;
        }