1
vote
What are Code Smells? What is the best way to correct them?
Reassigning Parameters in Method Body
Reassigning parameters in the method body is a bad smell. It's a source of confusion and can be a source of errors when the code is edited later. …
8
votes
What are Code Smells? What is the best way to correct them?
Too Many [out] Parameters (.NET)
When a method contains out parameters, especially when there are more than one out parameter, consider returning a class instead.
// Uses …
2
votes
Do you source control your databases?
FYI This was also brought up a few days ago by Dana ... Stored procedures/DB schema in source c …
0
votes
Reasons to NOT run a business-critical C# console application via the debugger?
Aside from the debug code possibly having different code paths (#ifdef, Debug.Assert(), etc) code-wise it will run the same.
A little scary mind you - set breakpoints, set the …
3
votes
Is it correct to use inheritance instead of name aliasing in c#?
I'd agree with not using an alias in that manner. Nobody in your team should be using aliases in the manner presented; it's not the reason aliasing was provided. Additionally, from the way …
1
vote
Is it OK to use HttpRuntime.Cache outside ASP.NET applications?
I once used it, but it didn't feel right and IIRC increased the memory footprint quite dramatically. Instead, I implemented my own lightweight cache mechanism which is surprisingly easy to do. …
4
votes
How to convince people to comment their code
I'm not being snarky at you, but you should rephrase the question to be How do you convince other developers to work as a team?
Seriously, some people assume you can read their min …
1
vote
Is it OK to overload ShowDialog() so that a child form returns information as an out parameter?
@Musigenesis, you really don't want to force client code to break when you change your dialog, and using an out parameter that is only sometimes valid isn't a good design. As @Daok says, when you h …
1
vote
Alternatives to using web.config to store settings (for complex solutions)
You could store the settings in any old Xml file and use the XmlSerializer to take your class and convert it to < - > from Xml. In another …
3
votes
Should you enforce constraints at the database level as well as the application level?
Typically there is always some duplication, and databases aren't just dumb repositories.
db
The database ensures integrity at a data level. Foreign key constraints, non null const …
3
votes
In Asp.net what would you put in the Session_Start and Session_End events in Global.asax ?
It's always good to remind ourselves why we should never use Session_End
excert from Understanding session state modes + FAQ …
6
votes
Is using reflection a design smell?
Once had a program that processed files (how generic is that description)
By using reflection all you had to do was drop in a DLL into a folder, the app would pick that up and use reflectio …
