i have an asp.net-mvc webpage and i want to show a dropdown list that is based off an enum. I want to show the text of each enum item and the id being the int value that the enum is associated with. Is there any elegant way of doing this conversion?

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

You can use LINQ:

Enum.GetValues(typeof(MyEnum)).Cast<MyEnum>().Select(v => new SelectListItem {
    Text = v.ToString(),
    Value = ((int)v).ToString()
});
link|improve this answer
Although LINQ has become the unofficial name of the Enumerable Extensions I can't help but wonder if something more appropriate exists. – ChaosPandion Aug 15 '10 at 22:10
It's part of the Linq namespace and project, and IMO the correct name. Linq is just also the name for the language extension. – Dykam Aug 15 '10 at 22:18
this code above is not compiling. i am trying to do this: List<SelectListItem> dropdown = Enum.GetValues(typeof(EventType)).Select(v => new SelectListItem { Selected = (int)v == id, Text = v.ToString(), Value = ((int)v).ToString() }).ToList(); return dropdown; but getting an error: "Cannot cast expression from TSource to int" in the lines that are doing (int)v) – leora Aug 15 '10 at 22:37
@ooo: Try @ChaosPandion's edit. – SLaks Aug 15 '10 at 23:07
You could say: "You can use System.Linq" – jfar Aug 16 '10 at 1:37
feedback

You can use Enum.GetNames() to get a string array containing the names of the enum items. If your item names are user friendly, then this is probably good enough. Otherwise, you could create your own GetName() method that would return a nice name for each item.

OR - if the enum will never (or rarely) change, you could just create a method that directly adds hard-coded items to your dropdown. This is probably more efficient (if that is important to you).

link|improve this answer
feedback

Now I used Tuple<string, string> but you can convert this to use anything:

var values = Enum.GetValues(typeof(DayOfWeek))
    .Cast<DayOfWeek>()
    .Select(d => Tuple.Create(((int)d).ToString(), d.ToString()))
    .ToList()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.