[]
Represents a string literal node in the syntax tree.
public class TextNode : ConstNode, ICloneable
Creates a new TextNode from string.
public TextNode(string value)
value
stringThe string value. The value can't be null (Nothing).
The text of this node. The value can't be null (Nothing).
public string Value { get; set; }