Exemplo n.º 1
0
 public void ForEachItem(Action <Node <T> > nodeItemAction)
 {
     nodeItemAction(this);
     Childs.ForEachItem(x => x.ForEachItem(nodeItemAction));
 }