withSIX.Play.Core.Games.Legacy.Steam.KeyValuesTokenizer.IgnoreWhitespace C# (CSharp) Method

IgnoreWhitespace() private method

private IgnoreWhitespace ( ) : void
return void
        void IgnoreWhitespace() {
            var current = Current();
            while (current != default(char)) {
                if (current == '\n') {
                    LastLineBreak = _position;
                    _line++;
                } else if (!ws.Contains(current))
                    return;
                Forward();
                current = Current();
            }
        }