Language[] result = (Language[])Enum.GetValues(typeof(Language))
will get you your values, if you want a list of the enums.
If you want a list of the names, use this:
string[] names = Enum.GetNames(typeof(Languages));
Language[] result = (Language[])Enum.GetValues(typeof(Language))
will get you your values, if you want a list of the enums.
If you want a list of the names, use this:
string[] names = Enum.GetNames(typeof(Languages));