Skip to content

Instantly share code, notes, and snippets.

@Razzo78
Last active September 3, 2020 13:22
Show Gist options
  • Save Razzo78/f724b15aa21598a6f81e779a6f1eddc7 to your computer and use it in GitHub Desktop.
Save Razzo78/f724b15aa21598a6f81e779a6f1eddc7 to your computer and use it in GitHub Desktop.
C# - Convert an enumeration to a list of values
List<Era> eras = System.Enum
.GetValues(typeof(Era))
.Cast<Era>()
.ToList();
enum Era
{
Paleolitico,
Neolitico,
Mesozoico,
Paleozoico
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment