How can you enumerate an enum in C#?
enum
E.g. the following code does not compile:
public enum Suit {
I think you can use
Enum.GetNames(Suit)