AIMA.Core.Logic.Common.Token.Token C# (CSharp) Méthode

Token() public méthode

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