I want to do the same as in this question, that is:
enum DaysOfTheWeek {Sunday=0, Monday, Tuesday...}; string[] message_array = new string[number_of_items_at
If the values of your enum items are contigious, the array method works pretty well. However, in any case, you could use Dictionary (which is less performant, by the way).
Dictionary