Search Results

6
votes

When is it better to use String.Format vs string concatenation?

My initial preference (coming from a C++ background) was for String.Format. I dropped this later on due to the following reasons: String concatenation is arguably "safer". It happe …
7
votes

Why didn’t unit testing work out for your project?

I employed unit testing in a couple of projects I worked on (web applications, using business objects + stored procedures to perform CRUD operations on SQL databases). Heavy use of …
19
votes

Are variable prefixes ( Hungarian ) really necessary anymore?

The only places I see fit to bend the standards and prefix variables: control names: txtWhatever - and I see I'm not the only one. The nice thing is that you can come …
2
votes

Are there any reasons not to use “this” (”Self”, “Me”, …)?

I personally find that this.whatever is less readable. You may not notice the difference in a 2-line method, but wait until you get this.variable and this.othervaria …
1
vote

How to improve data access layer select method Pattern

First, I think you already considered using an ORM vs. rolling your own. I won't go into this one. My thoughts on rolling your own data access code: Over time, I found it easi …
1
vote

C#: Should I bother checking for null in this situation?

It always depends on the context (in my opinion). For instance, when writing a library (for others to use), it certainly makes sense to fully check each and every parameter and throw the ap …