Ejemplo n.º 1
0
    public void Print()
    {
        Console.Write("|" + this.Data + "|-> ");

        if (this.NextNode != null)
        {
            NextNode.Print();
        }
    }