quando eu crio os getters e setters referente ao CPF:
Ex: public string CPF { get; set; }
consequentemente por debaixo dos panos, o compilador cria o atributo _cpf como privado?
Ficando: private string _cpf;
??
quando eu crio os getters e setters referente ao CPF:
Ex: public string CPF { get; set; }
consequentemente por debaixo dos panos, o compilador cria o atributo _cpf como privado?
Ficando: private string _cpf;
??
Exatamente, Mateus!