using System.Collections.Generic;
public static void Main()
LinkedList<int> ListaN3 = new LinkedList<int>();
foreach(int num in new int[] {10,45,23,45,67,89,0})
LinkedListNode<int> NodoT = new LinkedListNode<int>(15);
for(LinkedListNode<int>nodo=ListaN3.First; nodo != null; nodo = nodo.Next)