CNCGUI.TextParser.MovePast C# (CSharp) Method

MovePast() public method

Moves to the next occurrence of any character that is not one of the specified characters
public MovePast ( char chars ) : void
chars char Array of characters to move past
return void
        public void MovePast(char[] chars)
        {
            while (IsInArray(Peek(), chars))
                MoveAhead();
        }