vote up 4 vote down star

Is there a way to convert an enum to a list that contains all the enum's options?

flag

80% accept rate

2 Answers

vote up 9 vote down check

This will return an array of all the values of an Enum.

Enum.GetValues(typeof(SomeEnum));
link|flag
that was easy... – newWeb Jul 22 at 18:49
vote up 2 vote down

I think that if you are looking to do this, you might want to think if you really should be using an enum or if you should switch to an object that represents w/e your enum is.

link|flag

Your Answer

Get an OpenID
or

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