MongoDB.Bson.IO.MultiChunkBuffer.ReadBytes C# (CSharp) 메소드

ReadBytes() 공개 메소드

Reads bytes.
MultiChunkBuffer
public ReadBytes ( int count ) : byte[]
count int The count.
리턴 byte[]
        public byte[] ReadBytes(int count)
        {
            ThrowIfDisposed();

            var destination = new byte[count];
            ReadBytes(destination, 0, count);

            return destination;
        }

Same methods

MultiChunkBuffer::ReadBytes ( byte destination, int destinationOffset, int count ) : void