Glob.Scanner.PeekChar C# (CSharp) Method

PeekChar() private method

private PeekChar ( ) : int
return int
        private int PeekChar()
        {
            var sourceIndex = this._sourceIndex + 1;
            if (sourceIndex >= this._source.Length)
                return -1;
            else
                return this._source[sourceIndex];
        }