Olá. Tudo bem?
Qual é a diferença entre os dois códigos abaixo?
// Propriedade n° 1
public IList<string> example { get; private set; }
// Propriedade n° 2
private IList<string> _example;
public IList<string> {
get
{
return ReadOnlyCollection<string>(_example);
}
}
Desde já, agradeço.