CSMongo.IO.DynamicStream.Read C# (CSharp) 메소드

Read() 공개 메소드

Reads the bytes within the specified area
public Read ( int start, int length ) : byte[]
start int
length int
리턴 byte[]
        public byte[] Read(int start, int length)
        {
            return this._Output.Skip(start).Take(length).ToArray();
        }