Quando estava montando a classe Cliente ao escrever private string _cpf ele ficou transparente no Visual Studio, porque?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace P10_ByteBank
{
public class Cliente
{
private string _cpf;
public string CPF
{
get
{
return _cpf;
}
set
{
// Escrevo minha lógica de validação de CPF
_cpf = value;
}
}
public string Nome { get; set; }
public string Profissao { get; set; }
}
}