[]
Gets or sets the value of this node.
This property stores the boolean value represented by this logical literal node in the syntax tree.
public bool Value { get; set; }
Public Property Value As Boolean
LogicalNode node = new LogicalNode(true);
bool value = node.Value;
node.Value = false;