[]
Represents an empty node in a formula syntax tree.
This node is used when an argument is omitted. EmptyNode is immutable,
and the shared instance returned by Instance is the only valid instance
for public use.
public sealed class EmptyNode : TerminalNode, ICloneable
Public NotInheritable Class EmptyNode
Inherits TerminalNode
Implements ICloneable
EmptyNode node = EmptyNode.Instance;
IList<SyntaxNode> children = node.Children;
int childCount = children.Count;
| Name | Description |
|---|---|
| Instance | The shared instance of EmptyNode. |