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 …
2
votes

Best practices for referencing 3rd party assemblies

An alternate I've been using on many (C#) projects is: Make a "Bin" folder in the solution directory (same level as the project directories) Make the output of all projects . …
2
votes

Why does C# XmlDocument.LoadXml(string) fail when an XML header is included?

Don't get it. I tried the same here and I get no such exception. Are you sure the root tag (Report) is closed, i.e. ending with </Report>? Here's my test code: …
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

When do you add a new project for a nested namespace?

Just adding my 2 cents to this question, to expand Jon's answer with some "been there - done that" experience: I did use, in several solutions, at least two projects named by namespace (wel …