Catrobat.IDE.Core.Xml.XmlObjects.Formulas.XmlFormulaTreeFactory.CreateDivideNode C# (CSharp) Метод

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

public static CreateDivideNode ( XmlFormulaTree leftChild, XmlFormulaTree rightChild ) : XmlFormulaTree
leftChild XmlFormulaTree
rightChild XmlFormulaTree
Результат XmlFormulaTree
        public static XmlFormulaTree CreateDivideNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)
        {
            return new XmlFormulaTree
            {
                VariableType = "OPERATOR",
                VariableValue = "DIVIDE",
                LeftChild = leftChild,
                RightChild = rightChild
            };
        }
        public static XmlFormulaTree CreatePowerNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)