[]
Represents an operator call expression in a formula syntax tree.
An OperatorNode is a non-terminal syntax node whose operator type is
defined by an OperatorKind. Use this class to inspect or modify the
operator associated with an expression node.
public class OperatorNode : NonTerminalNode, ICloneable
Public Class OperatorNode
Inherits NonTerminalNode
Implements ICloneable
OperatorNode node = new OperatorNode(OperatorKind.Addition);
node.Kind = OperatorKind.Subtraction;
OperatorKind kind = node.Kind;
| Name | Description |
|---|---|
| OperatorNode(OperatorKind) | Creates a new This constructor initializes the node with the specified OperatorKind. |
| Name | Description |
|---|---|
| Kind | Gets or sets the type of the operator. This property stores the OperatorKind associated with this OperatorNode. |