[]
Represents a boolean literal node in a formula syntax tree.
A LogicalNode stores a bool value that can be read or updated after creation.
public class LogicalNode : ConstNode, ICloneable
Public Class LogicalNode
Inherits ConstNode
Implements ICloneable
LogicalNode node = new LogicalNode(true);
bool value = node.Value;
| Name | Description |
|---|---|
| LogicalNode(bool) | Creates a new This constructor initializes a logical literal node in the expression syntax tree with the specified constant value. |
| Name | Description |
|---|---|
| Value | Gets or sets the value of this node. This property stores the boolean value represented by this logical literal node in the syntax tree. |