public void adicionar(Contato c) { this.lista.Add(c); }
public bool remover(Contato c) { return(this.lista.Remove(c)); }
public override bool Equals(object obj) { Contato c = (Contato)obj; return(this.Email.Equals(c.Email)); }