Blast.Blast.CopyBufferSection C# (CSharp) Method

CopyBufferSection() private method

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

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