public void IniciarVet(DadosAlunos[] aluno) { for (int i = 0; i < aluno.Length; i++) { aluno[i] = new DadosAlunos("", "", 0, new int[4], new int[4]); } }
static void Main(string[] args) { DadosAlunos[] aluno = new DadosAlunos[5]; Cadastro cad = new Cadastro(aluno); cad.IniciarVet(aluno); int op; do { op = menu(); switch (op) { case 0: Console.Clear(); cad.cadastro(); break; case 1: cad.print(); break; case 2: cad.nota(); break; case 3: cad.alunosAprovados(); break; case 4: cad.alunosReprovados(); break; default: Environment.Exit(0); break; } } while (op != 6);