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