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

Advance() защищенный Метод

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