Glob.Scanner.SetCurrentCharacter C# (CSharp) Method

SetCurrentCharacter() private method

private SetCurrentCharacter ( ) : void
return void
        private void SetCurrentCharacter()
        {
            if (this._sourceIndex >= this._source.Length)
                this._currentCharacter = -1;
            else
                this._currentCharacter = this._source[this._sourceIndex];
        }