System.StreamExtensions.ReadDecimal C# (CSharp) Метод

ReadDecimal() публичный статический Метод

public static ReadDecimal ( this stream ) : decimal
stream this
Результат decimal
        public static unsafe decimal ReadDecimal(this Stream stream) { decimal v; stream.ReadNoAlloc((byte*)&v, 0, sizeof(decimal)); return v; }