public static void Main()
BallColor ballColor = BallColor.White;
string enumValue = ballColor.ToString();
Console.WriteLine(enumValue);
Console.WriteLine("using For loop");
for (BallColor bc = BallColor.White; bc <= BallColor.Green; bc++)
string val = bc.ToString();