AsmResolver.MemoryStreamReader.ReadBytes C# (CSharp) 메소드

ReadBytes() 공개 메소드

public ReadBytes ( int count ) : byte[]
count int
리턴 byte[]
        public byte[] ReadBytes(int count)
        {
            Advance(count);
            var buffer = new byte[count];
            Buffer.BlockCopy(_data, _position - count, buffer, 0, count);
            return buffer;
        }