Is it possible to iterate through a enum without knowing its type first?
Say I pass in a string name that represents the type of the enum to a method.
I would then somehow need to get the enum type from that string name and iterate through the collection to extract the names/values contained in the enum.
You can use reflection to do it