what is the type called when doing a foreach of enum values in c# code example
Example: enum foreach
foreach (Suit suit in (Suit[]) Enum.GetValues(typeof(Suit)))
{
}
foreach (Suit suit in (Suit[]) Enum.GetValues(typeof(Suit)))
{
}