AIMA.Core.Logic.Common.Lexer.lookAhead C# (CSharp) 메소드

lookAhead() 보호된 메소드

protected lookAhead ( int position ) : char
position int
리턴 char
        protected char lookAhead(int position)
        {
            return (char)lookAheadBuffer[position - 1];
        }