MrKWatkins.Ast Help

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

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

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

Parameters

Name

Type

Description

nodes

TNode[]

The nodes to move.

Last modified: 09 November 2024