AIMA.Core.Logic.FOL.Parsing.AST.ConnectedSentence.ConnectedSentence C# (CSharp) Method

ConnectedSentence() public method

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