AIMA.Core.Logic.Common.Token.Token C# (CSharp) Method

Token() public method

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