Exemplo n.º 1
0
 public void RemoveNode(string identify)
 {
     if (NextNode.Identify == identify)
     {
         NextNode = null;
     }
     else
     {
         NextNode.RemoveNode(identify);
     }
 }