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

setInput() 공개 메소드

public setInput ( String inputString ) : void
inputString String
리턴 void
        public void setInput(String inputString)
        {
            lookAheadBuffer = new int[_lookAhead];
            this.input = new StringReader(inputString);
            fillLookAheadBuffer();
        }