Hi,
To find the next node, it seems there two possible methods :
- NextSibling :
Gets the node immediately following this node.
- NextPreOrder :
Gets next node according to the pre-order tree traversal algorithm.
What are the difference between the two methods ? What does mean “pre-order tree traversal algorithm” ? Is the second more efficient ?