using System.Collections.Generic;
public Pessoa(string Nome, int Idade, string Cpf)
List <Pessoa> lista_pessoa = new List<Pessoa> ();
public void CadastrarPessoa (string Nome, int Idade, string Cpf)
Pessoa umapessoa = new Pessoa(Nome, Idade, Cpf);
lista_pessoa.Add(umapessoa);
public Pessoa PesquisarCpf (string Cpf)
for(int i = 0; i < lista_pessoa.Count; i++)
Pessoa novapessoa = lista_pessoa[i];
if (novapessoa.getCpf() == Cpf)
public bool RemoverPessoa (string Cpf)
Pessoa umapessoa = PesquisarCpf(Cpf);
lista_pessoa.Remove(umapessoa);