Skip to content

Children<TNode>.Move Method

Overloads

Name Description
Move(TNode) Moves a node from it's current parent (if it has one) and into this collection.
Move(IEnumerable<TNode>) Moves nodes from their current parents (if they have one) into this collection.
Move(TNode[]) Moves nodes from their current parents (if they have one) into this collection.

Move(TNode)

Moves a node from it's current parent (if it has one) and into this collection.

public void Move(TNode node);

View source

Parameters

Name Type Description
node TNode The node to move.

Move(IEnumerable<TNode>)

Moves nodes from their current parents (if they have one) into this collection.

public void Move(IEnumerable<TNode> nodes);

View source

Parameters

Name Type Description
nodes IEnumerable<TNode> The nodes to move.

Move(TNode[])

Moves nodes from their current parents (if they have one) into this collection.

public void Move(params TNode[] nodes);

View source

Parameters

Name Type Description
nodes TNode[] The nodes to move.