I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following <
enum
You can also define an enum value like Name_Without_Spaces, and when you want a description use Name_Without_Spaces.ToString().Replace('_', ' ') to replace the underscores with spaces.
Name_Without_Spaces
Name_Without_Spaces.ToString().Replace('_', ' ')