CmdLine.Tokenizer.EatWhitespace C# (CSharp) 메소드

EatWhitespace() 개인적인 메소드

private EatWhitespace ( ) : void
리턴 void
        private void EatWhitespace()
        {
            while (!AtEnd && Char.IsWhiteSpace(CurrentChar))
                ++_position;
        }