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 …