1
resposta

Projeto 5 Classe aluno

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);
1 resposta

Bom dia Marcelo, tudo bom?

Parabéns por topar a realização do desafio, continue assim focado nos estudos!

Abraços e bons estudos 😄


Caso este post tenha lhe ajudado, por favor, marcar como solucionado ✓. Bons Estudos!