[]
Represents a parenthesized expression in a formula syntax tree.
The node contains the expression inside the parentheses through the inherited child node collection.
public class ParenthesisNode : NonTerminalNode, ICloneable
Public Class ParenthesisNode
Inherits NonTerminalNode
Implements ICloneable
ParenthesisNode node = new ParenthesisNode();
node.Children.Add(new NumberNode(100));
FormulaSyntaxTree tree = new FormulaSyntaxTree();
tree.Root = node;
string formulaText = tree.ToString();
| Name | Description |
|---|---|
| ParenthesisNode() | Creates a new ParenthesisNode. |