My enum class PlayerPosition holds all of the positions on a football field (QB, HB, etc.). I'm having trouble "translating" (not sure of the word but I hope you understand) the enum from the # it's stored as into a string, which can be read by my switchboard. Right now, I already have a "foreach" loop in this method (called Calc) but I can't have a "foreach" loop in this method because this method is already in a loop to deal with getting to the next player. Anywho, this is the code I came up with. I've tried Enum.GetNames(typeof(PlayerPosition)) in the switch parentheses but it didn't work.
foreach (string p in Enum.GetNames(typeof(PlayerPosition)))
{
switch (p)
{
case "QB":
...