24
1
using System;
2
3
public class Program
4
{
5
enum BallColor
6
{
7
White=0,
8
Red = 1,
9
Green = 2
10
}
11
public static void Main()
12
{
13
string value = "Red";
14
15
// Try to convert the string to an enum.
16
BallColor ball = (BallColor)Enum.Parse(typeof(BallColor), value);
17
18
// Check if value matches
19
if (ball == BallColor.Red)
20
{
21
Console.WriteLine("Ball Color is Red");
22
}
23
}
24
}
Cached Result
Ball Color is Red