I have the following codes that I need to put into an enum:
 10, 11, 13, AA, BB, EE
I'm having a hard time trying to get them into an enum in C#. I currently have this:
 public enum REASON_CODES { _10, _11, _13, AA, BB, CC }
but would like to have this, with the numbers being recognized as strings, not ints:
 public enum REASON_CODES { 10, 11, 13, AA, BB, CC }
Is this possible or am I dreaming?
 
     
     
     
    