Esempio n. 1
0
 public void AddToEndOfList(LinkedListNode <T> node)
 {
     if (Next == null)
     {
         Next          = node;
         Next.Previous = this;
     }
     else
     {
         Next.AddToEndOfList(node);;
     }
 }