Alba.Jaml.MSInternal.MeScanner.Advance C# (CSharp) Метод

Advance() приватный Метод

private Advance ( ) : bool
Результат bool
        private bool Advance ()
        {
            this._idx++;
            if (this.IsAtEndOfInput) {
                this._idx = this._inputText.Length;
                return false;
            }
            return true;
        }