How to list Enum\'s members in code? I have the following Enum:
Public Enum TestEnum As int32 First = 0 Second = 2 Third = 4 Fourth = 6 End Enum
Have you looked at Enum.GetValues ?
Edit: To clarify, yes you need to pass a Type not an instance of the enum to either method.
Enum.GetNames(GetType(TestEnum))