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

ReadDecimal() public static méthode

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