Example #1
0
        public void Add(T info)
        {
            NoLista <T> no = new NoLista <T>(info);

            if (atual != null)
            {
                no.setProx(atual);
            }
            atual = no;
        }
Example #2
0
        public string GetAll()
        {
            string      aux = "";
            NoLista <T> no  = atual;

            while (no != null)
            {
                aux += no.getInfo() + "\n";

                no = no.getProx();
            }
            return(aux.Substring(0, aux.Length - 1));
        }
Example #3
0
 public void setProx(NoLista <T> proximo)
 {
     this.prox = proximo;
 }