GetNodes() public méthode

public GetNodes ( GraphNodeDelegateCancelable del ) : void
del GraphNodeDelegateCancelable
Résultat void
 public override void GetNodes(GraphNodeDelegateCancelable del)
 {
     if (root == null)
     {
         return;
     }
     root.GetNodes(del);
 }
        public void GetNodes(GraphNodeDelegateCancelable del)
        {
            if (node != null)
            {
                del(node);
                return;
            }

            c0.GetNodes(del);
            c1.GetNodes(del);
            c2.GetNodes(del);
            c3.GetNodes(del);
        }