Beispiel #1
0
 public static IList <ISimpleTree <TData> > Traverse <TData>(ISimpleTree <TData> tree)
 {
     return(TreeExtensions.Traverse <TData, ISimpleTree <TData> >(tree));
 }
Beispiel #2
0
 public static IList <ISimpleTree <TData> > Traverse <TData>(
     ISimpleTree <TData> tree, Action <ISimpleTree <TData> > preAction, Action <ISimpleTree <TData> > postAction)
 {
     return(TreeExtensions.Traverse <TData, ISimpleTree <TData> >(tree, preAction, postAction));
 }