public class Aluno
{
private int matricula;
public int Matricula
{
get { return this.matricula; }
set
{
if (value > 0)
{
this.matricula = value;
}
else
{
return;
}
}
}
public string Nome { get; set; }
public string Email { get; set; }
public bool Status { get; set; }
public int TipoCurso { get; set; }
}
Program.cs
Aluno aluno = new Aluno();
aluno.Matricula = 5547;