Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void Main()
- {
- Visualizar(Dimension.Grande);
- Visualizar(ConsoleColor.Red);
- Visualizar(DialogResult.Retry);
- }
- // Enumeración personalizadas:
- enum Dimension
- {
- Pequenhio,
- Mediano,
- Grande
- }
- // Presentación tipo de la enumeración y el valor literal del nombre
- // del valor de la enumeración:
- static void Visualizar(Enum valor)
- {
- Console.WriteLine(String.Format("{0}.{1}", valor.GetType(), valor.ToString()));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement