CompositeNode1.InsertChildrenRange

InsertChildrenRange(int, IEnumerable<T>)

Inserts the node’s sequence starting from specified position in the list of child nodes for this node.

public void InsertChildrenRange(int i, IEnumerable<T> newChildren)
ParameterTypeDescription
iInt32Position to insert
newChildrenIEnumerable`1The sequence of nodes to be inserted.

See Also


InsertChildrenRange(int, params T[])

Inserts the node’s sequence starting from specified position in the list of child nodes for this node.

public void InsertChildrenRange(int i, params T[] newChildren)
ParameterTypeDescription
iInt32Position to insert
newChildrenT[]The sequence of nodes to be inserted.

See Also