Ich habe eine Aufzählung:
public enum MyColours
{
Red,
Green,
Blue,
Yellow,
Fuchsia,
Aqua,
Orange
}
und ich habe eine Zeichenfolge:
string colour = "Red";
Ich möchte zurückkehren können:
MyColours.Red
von:
public MyColours GetColour(string colour)
Bisher habe ich:
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 enumeration
// but how do i convert this information into returning a
// MyColour enumeration?
}
Wie Sie sehen können, stecke ich ein bisschen fest. Gibt es sowieso einen Enumerator nach Wert auszuwählen. Etwas wie:
MyColour(2)
würde dazu führen
MyColour.Green