AIMA.Core.Logic.FOL.Parsing.AST.NotSentence.NotSentence C# (CSharp) Метод

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

public NotSentence ( Sentence negated ) : System
negated Sentence
Результат System
        public NotSentence(Sentence negated)
        {
            this.negated = negated;
            args.Add(negated);
        }