Catrobat.IDE.Core.Xml.XmlObjects.Formulas.XmlFormulaTreeFactory.CreateMinNode C# (CSharp) Méthode

CreateMinNode() public static méthode

public static CreateMinNode ( XmlFormulaTree leftChild, XmlFormulaTree rightChild ) : XmlFormulaTree
leftChild XmlFormulaTree
rightChild XmlFormulaTree
Résultat XmlFormulaTree
        public static XmlFormulaTree CreateMinNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)
        {
            return new XmlFormulaTree
            {
                VariableType = "FUNCTION",
                VariableValue = "MIN",
                LeftChild = leftChild,
                RightChild = rightChild
            };
        }
        public static XmlFormulaTree CreateMaxNode(XmlFormulaTree leftChild, XmlFormulaTree rightChild)