public void Add(T info) { NoLista <T> no = new NoLista <T>(info); if (atual != null) { no.setProx(atual); } atual = no; }
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)); }
public void setProx(NoLista <T> proximo) { this.prox = proximo; }