Sobes.tech
Junior — Senior

How to get integer values of enumeration members

livecode

Task condition

Determine which numbers will be output to the console when executing the given code.

Console.WriteLine($"{(int)Color.Green}, {(int)Color.Yellow}");

enum color
{
    Red, Green, Blue = 5, Cyan, Magenta = 10, Yellow
}