Fan.Sys.MemBuf.getBytes C# (CSharp) Method

getBytes() private method

private getBytes ( long pos, byte dest, int off, int len ) : void
pos long
dest byte
off int
len int
return void
        internal override void getBytes(long pos, byte[] dest, int off, int len)
        {
            System.Array.Copy(m_buf, pos, dest, off, len);
        }