Glob.Scanner.PeekChar C# (CSharp) 메소드

PeekChar() 개인적인 메소드

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