Interface ITree<T>
Apply this interface to a class to allow it to auto implement Traverse and other tree extensions.
public interface ITree<T> where T : ITree<T>
Type Parameters
T
- Extension Methods
Methods
Getchildren()
Get the children of this node in the tree.
IEnumerable<T> Getchildren()
Returns
- IEnumerable<T>