BitOrchestra.EvaluatorStream._Advance C# (CSharp) 메소드

_Advance() 개인적인 메소드

Advances to the next generated buffer.
private _Advance ( ) : void
리턴 void
        private void _Advance()
        {
            this._Evaluator.Invalidate();
            this._Buffer = this._Evaluator.Generate(this._Parameter);
            this._Parameter += this._Buffer.Length;
            this._Offset = 0;
        }