Skip to content

PropertyNode<TNode> Constructors

Overloads

Name Description
PropertyNode() Initialises a new instance of the Node<TNode> class.
PropertyNode(IEnumerable<TNode>) Initialises a new instance of the Node<TNode> class with the specified children.

PropertyNode()

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

protected PropertyNode();

View source

PropertyNode(IEnumerable<TNode>)

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

protected PropertyNode(params IEnumerable<TNode> children);

View source

Parameters

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