AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence.BinarySentence C# (CSharp) Метод

BinarySentence() публичный Метод

public BinarySentence ( String op, Sentence first, Sentence second ) : System
op String
first Sentence
second Sentence
Результат System
        public BinarySentence(String op, Sentence first, Sentence second)
        {
            this.op = op;
            this.first = first;
            this.second = second;

        }