Last active
March 9, 2020 23:24
-
-
Save gdonega/821e2a6c7d8c5ba150f78e672aba2bca to your computer and use it in GitHub Desktop.
C# - Enum: TiposJogosComSwitch- main
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace TiposJogosComSwitch | |
{ | |
public class Program | |
{ | |
static void Main(string[] args) | |
{ | |
TipoJogo tipoJogo = TipoJogo.RPG; | |
Console.WriteLine(tipoJogo.GetDescricao()); | |
// No console --> Role-playing game | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment