12
votes
13answers
3k 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")]
…
0
votes
2answers
127 views
Retrieve a list of the most popular GET param variations for a given URL?
I'm working on building intelligence around link propagation, and because I need to deal with many short URL services where a reverse-lookup from an exact URL address is required, I need to be able to …
