Programming Languages
C#
Objective
Mar 07, 2013
Which is the correct output for the C#.NET code?
enum color
{
red,
green,
blue
}
color c;
c = color.red;
Console.WriteLine(c);
Detailed Explanation
Option A is the right answer.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts