Ejemplo n.º 1
0
 public static ITreeNode <T> Find <T>(this ITreeNode <T> root, Func <ITreeNode <T>, bool> condition)
 {
     return(root.DepthFirstSearch(condition));
 }
Ejemplo n.º 2
0
 public static ITreeNode <T> Find <T>(this ITreeNode <T> root, T value)
 {
     return(root.DepthFirstSearch(value));
 }