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