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;
        }