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

Token() 공개 메소드

public Token ( int type, String text ) : System
type int
text String
리턴 System
        public Token(int type, String text)
        {
            this.type = type;
            this.text = text;
        }