Tagged Questions
50
votes
18answers
25k views
How do I override ToString in C# enums?
In the post Enum ToString, a method is described to use the custom attribute DescriptionAttribute like this:
Enum HowNice {
[Description("Really Nice")]
ReallyNice,
[Description("Kinda Nice")]
...