Skip to content

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();

View source

Node(IEnumerable<TNode>)

Initialises a new instance of the Node<TNode> class with the specified children.

protected Node(params IEnumerable<TNode> children);

View source

Parameters

Name Type Description
children IEnumerable<TNode> The children to add.