[]
Gets the numeric value stored in this node.
Returns the double value represented by this NumberNode in the formula syntax tree.
public double Value { get; set; }
Public Property Value As Double
NumberNode numberNode = new NumberNode(12.5);
double value = numberNode.Value;
numberNode.Value = 18.75;