Catrobat.IDE.Core.Models.Formulas.Tree.FormulaTreeFactory.CreateAndNode C# (CSharp) Метод

CreateAndNode() публичный статический Метод

public static CreateAndNode ( FormulaTree leftChild, FormulaTree rightChild ) : FormulaNodeAnd
leftChild FormulaTree
rightChild FormulaTree
Результат FormulaNodeAnd
        public static FormulaNodeAnd CreateAndNode(FormulaTree leftChild, FormulaTree rightChild)
        {
            return new FormulaNodeAnd
            {
                LeftChild = leftChild,
                RightChild = rightChild
            };
        }
        public static FormulaNodeOr CreateOrNode(FormulaTree leftChild, FormulaTree rightChild)