Question:
Is there any way that I can access the assigned value from the enum?
Eg: When my item is Red then I want get the corresponding value That’s ‘R’. Is that possible?
public enum Color
{
Red = 'R',
Blue = 'B',
Green ='G',
Yellow ='Y',
White = 'W'
}
Answer:
Yes by this way –
class Program
{
static void Main(string[] args)
{
Console.WriteLine((char)Color.Red);
}
}
public enum Color
{
Red = 'R',
Blue = 'B',
Green ='G',
Yellow ='Y',
White = 'W'
}