Blast.Blast.CopyBufferSection C# (CSharp) 메소드

CopyBufferSection() 개인적인 메소드

private CopyBufferSection ( int fromIndex, int copyCount ) : void
fromIndex int
copyCount int
리턴 void
        private void CopyBufferSection(int fromIndex, int copyCount)
        {
            EnsureBufferSpace(copyCount);

            Buffer.BlockCopy(this._outputBuffer, fromIndex, this._outputBuffer, this._outputBufferPos, copyCount);
            this._outputBufferPos += copyCount;
        }