次のコードがあります。
// 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] );
}
ただし、値にインデックスを付けることができません。これを行う簡単な方法はありますか?
または、何かを完全に見逃したことがありますか。