Dev2.Common.Dev2Tokenizer.MoveStartIndex C# (CSharp) Method

MoveStartIndex() private method

Moves the start index.
private MoveStartIndex ( int newOffSet ) : void
newOffSet int The new off set.
return void
        private void MoveStartIndex(int newOffSet)
        {
            if (!_isReversed)
            {
                _startIdx += newOffSet;
            }
            else
            {
                _startIdx -= newOffSet;
            }
        }