-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcentralDeExercicios.cs
executable file
·51 lines (40 loc) · 1.78 KB
/
centralDeExercicios.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// using System;
// using System.Collections.Generic;
// using System.Linq;
// namespace CSharpAluraDois {
// public class CentralDeExercicios {
// Dictionary<string, Action> Exercicios;
// public CentralDeExercicios(Dictionary<string, Action> exercicios) {
// Exercicios = exercicios;
// }
// public void SelecionarEExecutar() {
// int i = 1;
// foreach (var exercicio in Exercicios) {
// Console.WriteLine("{0}) {1}", i, exercicio.Key);
// i++;
// }
// Console.Write("Digite o número (ou vazio para o último)? ");
// int.TryParse(Console.ReadLine(), out int num);
// bool numValido = num > 0 && num <= Exercicios.Count;
// num = numValido ? num - 1 : Exercicios.Count - 1;
// string nomeDoExercicio = Exercicios.ElementAt(num).Key;
// Console.Write("\nExecutando exercício ");
// Console.BackgroundColor = ConsoleColor.Yellow;
// Console.ForegroundColor = ConsoleColor.Black;
// Console.WriteLine(nomeDoExercicio);
// Console.ResetColor();
// Console.WriteLine(String.Concat(
// Enumerable.Repeat("=", nomeDoExercicio.Length + 21)) + "\n");
// Action executar = Exercicios.ElementAt(num).Value;
// try {
// executar();
// } catch(Exception e) {
// Console.BackgroundColor = ConsoleColor.Red;
// Console.ForegroundColor = ConsoleColor.White;
// Console.WriteLine("Ocorreu um erro: {0}", e.Message);
// Console.ResetColor();
// Console.WriteLine(e.StackTrace);
// }
// }
// }
// }