Tagged Questions
The hug tag has no wiki summary.
50
votes
18answers
23k 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")]
...
1
vote
5answers
276 views
Simple random string generation function in C, please. Show me your art!
I'm working on a little (not so little actually) project in C (ref. this question) , and I need a little function in C that'd generate a unique and random string.
I need a small one that I can ...
1
vote
2answers
467 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 ...