Tagged Questions

5
votes
6answers
2k views

How do I create an html report without hardcoding the html?

I'm currently refactoring a console application whose main responsibility is to generate a report based on values stored in the database. The way I've been creating the report up til now is as ...
1
vote
5answers
105 views

Avoid hardcoding in switch statement

I have an object with has two properties: Text and Type. To avoid hard-coding the Types, I put them in the database, so they can be added to in future. At the moment the types are URL, Username and ...