OpenRA.StreamExts.ReadDouble C# (CSharp) Method

ReadDouble() public static method

public static ReadDouble ( this s ) : double
s this
return double
        public static double ReadDouble(this Stream s)
        {
            return BitConverter.ToDouble(s.ReadBytes(8), 0);
        }