Fan.Sys.MemBuf.MemBufOutStream.writeBuf C# (CSharp) Méthode

writeBuf() public méthode

public writeBuf ( Buf other, long n ) : OutStream
other Buf
n long
Résultat OutStream
            public override OutStream writeBuf(Buf other, long n)
            {
                int len = (int)n;
                p.grow(p.m_pos+len);
                other.pipeTo(p.m_buf, p.m_pos, len);
                p.m_pos += len;
                if (p.m_pos > p.m_size) p.m_size = p.m_pos;
                return this;
            }