System.StreamExtensions.ReadDouble C# (CSharp) Méthode

ReadDouble() public static méthode

public static ReadDouble ( this stream ) : double
stream this
Résultat double
        public static unsafe double ReadDouble(this Stream stream) { double v; stream.ReadNoAlloc((byte*)&v, 0, sizeof(double)); return v; }
        public static unsafe decimal ReadDecimal(this Stream stream) { decimal v; stream.ReadNoAlloc((byte*)&v, 0, sizeof(decimal)); return v; }