[]
Gets the error value stored in this node.
This property stores the CalcError that represents the error literal
associated with this ErrorNode.
public CalcError Value { get; set; }
Public Property Value As CalcError
ErrorNode node = new ErrorNode(CalcError.Div0);
CalcError error = node.Value;
node.Value = CalcError.Name;