Node<TNode> Constructors
Overloads
| Name | Description |
|---|---|
Node() |
Initialises a new instance of the Node<TNode> class. |
Node(IEnumerable<TNode>) |
Initialises a new instance of the Node<TNode> class with the specified children. |
Node()
Initialises a new instance of the Node<TNode> class.
protected Node();
Node(IEnumerable<TNode>)
Initialises a new instance of the Node<TNode> class with the specified children.
protected Node(params IEnumerable<TNode> children);
Parameters
| Name | Type | Description |
|---|---|---|
children |
IEnumerable<TNode> |
The children to add. |