CmdLine.Tokenizer.EatWhitespace C# (CSharp) Method

EatWhitespace() private method

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