What's the most efficient way to concatenate strings?
|
7
|
|
|
|
|
|
The StringBuilder.Append() method is much better than using the + operator. But I've found that, when the concatenations are less than 1000, String.Join() is even more efficient than StringBuilder.
The only problem with String.Join is that you have to concatenate the strings with a common delimiter.
|
||||||||||||
|
|
|
Rico Mariani, the .NET Performance guru, had an article on this very subject. It's not as simple as one might suspect. The basic advice is this:
|
|||
|
|
|
|
From Chinh Do - StringBuilder is not always faster: Rules of Thumb
Most of the time StringBuilder is your best bet, but there are cases as shown in that post that you should at least think about each situation. |
||
|
|
|
|
String.Concat(str1, str2) ? |
||
|
|
|
|
stringbuilder |
||
|
|
|
|
The most efficient is to use StringBuilder, like so:
@jonezy: String.Concat is fine if you have a couple of small things. But if you're concatenating megabytes of data, your program will likely tank. |
||
|
|
|
|
If you're operating in a loop, StringBuilder is probably the way to go; it saves you the overhead of creating new strings regularly. In code that'll only run once, though, String.Concat is probably fine. However, Rico Mariani (.NET optimization guru) made up a quiz in which he stated at the end that, in most cases, he recommends String.Format. |
||
|
|
|
From this MSDN article:
So if you trust MSDN go with StringBuilder if you have to do more than 10 strings operations/concatenations - otherwise simple string concat with '+' is fine. Simple and sound, if - I repeat - you decide to trust MSDN. |
||
|
|
|
|
It would depend on the code. StringBuilder is more efficient generally, but if you're only concatenating a few strings and doing it all in one line, code optimizations will likely take care of it for you. It's important to think about how the code looks too: for larger sets StringBuilder will make it easier to read, for small ones StringBuilder will just add needless clutter. |
||
|
|
|
|
MS Support Link: How to improve string concatenation performance in Visual C# |
||
|
|
|
|
For just two strings, you definitely do not want to use StringBuilder. There is some threshold above which the StringBuilder overhead is less than the overhead of allocating multiple strings. So, for more that 2-3 strings, use DannySmurf's code. Otherwise, just use the + operator. |
||
|
|
|
|
There's a similar question here that covered the performance of string concatenation methods. |
||
|
|
