using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Desafio5
{
public class Aluno
{
private int matricula;
public int Matricula
{
get { return this.matricula; }
set
{
if (value > 0)
{
this.matricula = value;
}
else
{
Console.WriteLine("Número inválido, digite uma matrícula maior que 0(zero)");
}
}
}
public string Nome { get; set; }
public string Email { get; set; }
public bool Status { get; set; }
public int TipoCurso { get; set; }
}
}
using Desafio5;
Aluno aluno1 = new Aluno();
aluno1.Matricula = 20;
Console.WriteLine("Número da matrícula: " + aluno1.Matricula);