AIMA.Core.Logic.FOL.Parsing.AST.ConnectedSentence.ConnectedSentence C# (CSharp) Méthode

ConnectedSentence() public méthode

public ConnectedSentence ( String connector, Sentence first, Sentence second ) : System
connector String
first Sentence
second Sentence
Résultat System
        public ConnectedSentence(String connector, Sentence first, Sentence second)
        {
            this.connector = connector;
            this.first = first;
            this.second = second;
            args.Add(first);
            args.Add(second);
        }