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

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

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