Exemplo n.º 1
0
        static void Main(string[] args)
        {
            DoublyLinkedList <int> dll = new DoublyLinkedList <int>();

            dll.AddToEnd(55);
            dll.AddToEnd(22);
            dll.AddToEnd(11);

            Console.WriteLine(dll.ToString());
            Console.ReadKey();
        }