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

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

public static CreateMaxNode ( FormulaTree firstChild, FormulaTree secondChild ) : FormulaNodeMax
firstChild FormulaTree
secondChild FormulaTree
Результат FormulaNodeMax
        public static FormulaNodeMax CreateMaxNode(FormulaTree firstChild, FormulaTree secondChild)
        {
            return new FormulaNodeMax
            {
                FirstChild = firstChild,
                SecondChild = secondChild
            };
        }