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?
|
feedback
|
|
You can use LINQ:
| |||||||||||
feedback
|
|
You can use 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). | ||||
|
feedback
|
|
Now I used
| |||
|
feedback
|