Cinthia
❔ Change Null Values
he told me to look at this code in FullName that I could get the idea, but it only confused me more public class Aluno
{
public int Id { get; set; }
public string Nome { get; set; }
public string Apelido { get; set; }
public List<Disciplina> Disciplinas { get; set; }
public string NomeCompleto
{
get
{
return $"{Nome} {Apelido} ";
}
}
38 replies