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; }