using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace AluraAlunos { public class Aluno { private int matricula { get; set; } public int Matricula { get { return this.matricula; } private set { if (value > 0) { this.matricula = value; } else { Console.WriteLine("Digite sua matrícula corretamente!!! "); } } }
public string nome { get; set; }
public string email { get; set; }
public bool status { get; set; }
public int tipoCurso { get; set; }
public Aluno(int matricula, string nome)
{
this.matricula = matricula;
this.nome = nome;
}
public Aluno()
{
}
public void ExibirAluno()
{
Console.WriteLine("Matrícula........: " + this.matricula);
Console.WriteLine("Nome.............: " + this.nome);
Console.WriteLine("Email............: " + this.email);
Console.WriteLine("Status...........: " + this.status);
Console.WriteLine("Tipo de Curso....: " + this.tipoCurso);
}
}
}
using AluraAlunos;
Aluno aluno1 = new Aluno(15874, "Eduardo Carvalho"); aluno1.email = "eduardo@alura.com.br"; aluno1.status = true; aluno1.tipoCurso = 8;
aluno1.ExibirAluno();