What's the most efficient way to concatenate strings?
|
The
The only problem with
|
|||||||||||||||||||||
|
|
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. |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
There are 5 types of string concatenations:
In an experiment, it has been proved that For more information, check this site. |
|||||||||||||||
|
|
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. |
|||
|
|
|
It really depends on your usage pattern. A detailed benchmark between string.Join, string,Concat and string.Format can be found here: String.Format Isn't Suitable for Intensive Logging (This is actually the same answer I gave to this question) |
|||
|
|
|
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. |
|||
|
|
