Alba.Jaml.MSInternal.Sample_StringParserBase.AdvanceOverWhitespace C# (CSharp) 메소드

AdvanceOverWhitespace() 보호된 메소드

protected AdvanceOverWhitespace ( ) : bool
리턴 bool
        protected bool AdvanceOverWhitespace ()
        {
            bool flag = true;
            while (!this.IsAtEndOfInput && IsWhitespaceChar(this.CurrentChar)) {
                flag = true;
                this.Advance();
            }
            return flag;
        }