Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/836d7ca4bdfe5d09738ffe9ea6e33811 to your computer and use it in GitHub Desktop.
Save hbulens/836d7ca4bdfe5d09738ffe9ea6e33811 to your computer and use it in GitHub Desktop.
[Flags] enum Colors
{
None = 0,
Red = 1,
Green = 2,
Blue = 4
};
public class Example
{
public static void Main()
{
string[] colorStrings =
{
"0",
"2",
"8",
"blue",
"Blue",
"Yellow",
"Red, Green"
};
foreach(string colorString in colorStrings)
{
try
{
Colors colorValue = (Colors) Enum.Parse(typeof(Colors), colorString);
if (Enum.IsDefined(typeof(Colors), colorValue) | colorValue.ToString().Contains(","))
Console.WriteLine("Converted '{0}' to {1}.", colorString, colorValue.ToString());
else
Console.WriteLine("{0} is not an underlying value of the Colors enumeration.", colorString);
}
catch (ArgumentException)
{
Console.WriteLine("'{0}' is not a member of the Colors enumeration.", colorString);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment