I have an enumerator:
public enum MyColours
{
Red,
Green,
Blue,
Yellow,
Fuchsia,
Aqua,
Orange
}
and i have a string:
string colour = "Red";
I want to be able to return:
MyColours.Red
from:
public MyColours GetColour(string colour)
So far i have:
public MyColours GetColours(string colour)
{
string[] colours = Enum.GetNames(typeof(MyColours));
int[] values = Enum.GetValues(typeof(MyColours));
int i;
for(int i = 0; i < colours.Length; i++)
{
if(colour.Equals(colours[i], StringComparison.Ordinal)
break;
}
int value = values[i];
// I know all the information about the matched enumerator
// but how do i convert this information into returning a
// MyColour enumerator?
}
As you can see, I'm a bit stuck. Is there anyway to select and enumerator by value. Something like:
MyColour(2)
would result in
MyColour.Green
Any ideas?
Thanks,
Matt