Ich habe folgenden Code:
// Obtain the string names of all the elements within myEnum
String[] names = Enum.GetNames( typeof( myEnum ) );
// Obtain the values of all the elements within myEnum
Array values = Enum.GetValues( typeof( myEnum ) );
// Print the names and values to file
for ( int i = 0; i < names.Length; i++ )
{
print( names[i], values[i] );
}
Ich kann jedoch keine Werte indizieren. Gibt es einen einfacheren Weg, dies zu tun?
Oder habe ich etwas ganz verpasst!