Click or drag to resize

TreeTraversalMode Enumeration

Defines the possible traversal orders when traversing a hierarchy of objects.

Namespace:  Linq.Extras
Assembly:  Linq.Extras (in Linq.Extras.dll) Version: 5.0.0+96a4f4bfed64095342c5df107c1fe1fb95603ee5
Syntax
public enum TreeTraversalMode
Members
  Member nameValueDescription
DepthFirst0 Depth-first traversal. For each node, explores its children before its siblings.
BreadthFirst1 Breadth-first traversal. For each node, explores its siblings before its children.
See Also