142

Is there a noticable performance difference between using string interpolation:

myString += $"{x:x2}";

vs String.Format()?

myString += String.Format("{0:x2}", x);

I am only asking because Resharper is prompting the fix, and I have been fooled before.

Krythic
  • 3,765
  • 5
  • 24
  • 64
  • 4
    Why not try both and see if you notice the difference? – Blorgbeard Sep 01 '15 at 23:30
  • 65
    @Blorgbeard Honestly, I'm lazy. And I figure it would take less time if one of you upstanding men/women knew the answer off-hand. – Krythic Sep 01 '15 at 23:31
  • 36
    I love how when I first asked this question, it got downvoted to oblivion and now, two years later, it's up to +21. – Krythic Mar 19 '17 at 20:20
  • i vote for @Blorgbeard since i think the performance never matters. – Lei Yang Apr 20 '17 at 06:01
  • 68
    Seriously. How can anyone doubt the usefulness of this question? Can you imagine the *total waste* of man hours, if everyone asking this question had to 'try it themselves and see?' Even if it only took 5 minutes, multiply that across the 10,000+ developers who've viewed this question so far. And then what do you do when a coworker doubts your results? Do it all over again? Or maybe just refer them to this SO post. That's sorta what it's there for. – BTownTKD Oct 25 '17 at 17:59
  • 9
    @BTownTKD That's typical Stackoverflow behavior for you. If anyone uses the site for it's intended purpose, they're immediately alienated. This is also one of the reasons why I think we should be allowed to collectively ban accounts. Many people simply don't deserve to be on this site. – Krythic Oct 25 '17 at 21:00
  • 2
    @Krythic you undid my edit to add the word "performance" to the question title. I'm curious why? They original title is very broad and doesn't indicate specifically what is being asked. – StayOnTarget Apr 08 '19 at 15:47
  • @DaveInCaz Because it was a frivolous edit, that in fact, did nothing to enhance the question. – Krythic Apr 08 '19 at 21:22
  • 9
    I think frivolous would be something that made no change to meaning or context (like, a typo for instance). But adding a key word to the title makes the question much more find-able. That can be a help to future readers and that doesn't seem unimportant to me at all. As it stands, as I mentioned, the title is quite broad and vague. – StayOnTarget Apr 08 '19 at 22:33
  • Something can help:[Performance: string concatenation vs String.Format vs interpolated string](https://www.meziantou.net/performance-string-concatenation-vs-string-format-vs-interpolated-string.htm) and [Interpolated strings: advanced usages](https://www.meziantou.net/interpolated-strings-advanced-usages.htm) – marbel82 Aug 23 '21 at 13:48

7 Answers7

76

Noticable is relative. However: string interpolation is turned into string.Format() at compile-time so they should end up with the same result.

There are subtle differences though: as we can tell from this question, string concatenation in the format specifier results in an additional string.Concat() call.

Community
  • 1
  • 1
Jeroen Vannevel
  • 42,521
  • 22
  • 100
  • 163
  • 4
    Actually, string interpolation could compile into string concatenation in some cases (e.g. when a `int` is used). `var a = "hello"; var b = $"{a} world";` compiles to string concatenation. `var a = "hello"; var b = $"{a} world {1}";` compiles to string format. – Omar Muscatello Nov 23 '18 at 17:18
34

The answer is both yes and no. ReSharper is fooling you by not showing a third variant, which is also the most performant. The two listed variants produce equal IL code, but the following will indeed give a boost:

myString += $"{x.ToString("x2")}";

Full test code

using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Diagnosers;
using BenchmarkDotNet.Diagnostics.Windows;
using BenchmarkDotNet.Running;

namespace StringFormatPerformanceTest
{
    [Config(typeof(Config))]
    public class StringTests
    {
        private class Config : ManualConfig
        {
            public Config() => AddDiagnoser(MemoryDiagnoser.Default, new EtwProfiler());
        }

        [Params(42, 1337)]
        public int Data;

        [Benchmark] public string Format() => string.Format("{0:x2}", Data);
        [Benchmark] public string Interpolate() => $"{Data:x2}";
        [Benchmark] public string InterpolateExplicit() => $"{Data.ToString("x2")}";
    }

    class Program
    {
        static void Main(string[] args)
        {
            var summary = BenchmarkRunner.Run<StringTests>();
        }
    }
}

Test results

|              Method | Data |      Mean |  Gen 0 | Allocated |
|-------------------- |----- |----------:|-------:|----------:|
|              Format |   42 | 118.03 ns | 0.0178 |      56 B |
|         Interpolate |   42 | 118.36 ns | 0.0178 |      56 B |
| InterpolateExplicit |   42 |  37.01 ns | 0.0102 |      32 B |
|              Format | 1337 | 117.46 ns | 0.0176 |      56 B |
|         Interpolate | 1337 | 113.86 ns | 0.0178 |      56 B |
| InterpolateExplicit | 1337 |  38.73 ns | 0.0102 |      32 B |

The InterpolateExplicit() method is faster since we now explicitly tell the compiler to use a string. No need to box the object to be formatted. Boxing is indeed very costly. Also, note that we reduced the allocations a bit.

l33t
  • 15,615
  • 14
  • 88
  • 169
  • 1
    I'm updating you as the answer, because you provided benchmarks, etc. Good job! – Krythic Sep 18 '20 at 01:14
  • The *third* variant will crash if `x` is `null`, though. – Pang Jan 03 '21 at 08:21
  • Why using interpolation in this case, instead of just `myString += x.ToString("x2");`? – Alexandre May 12 '21 at 15:42
  • Obviously, you wouldn't. For illustrative purposes, I chose to have very simple string formatting. – l33t May 13 '21 at 09:12
  • @Pang, we could change it to `$"{Data?.ToString("x2")}`. It might cost a few nanoseconds, but allocations/boxing will not be affected. – l33t May 13 '21 at 09:13
  • 1
    Look at the decompiled [IL code sharplab.io/...](https://sharplab.io/#v2:EYLgtghglgdgPgAQMwAIECYUGMCwAoAb3xRLVVgBcUARCCiAbn2NOTQEYAGFAMQHsATpAoAKAJQoAvAD4OnAHT8hdEQCICnEAA90AX1UAaGnQhimeUmTkoAkjAoBTAQAc+AGzoPxU2QBJ1tPTaeqrmlmwIXLb2Tq4ejgCiWs5uUFhQohIyKP4EgRDyACp8AMoUArAA5mo6qmL65rpAA=). Format and Interpolate have exactly same content. It uses the string.Format function. The string interpolation in InterpolateExplicit is redundant, it simple calls Data.ToString("x2")... and checks if null. Weird... Data.ToString("x2") can return null? – marbel82 Aug 19 '21 at 12:53
  • Yes, that's the whole idea with this interpolation syntax - it compiles into a `string.Format()` call. No, the interpolation is not redundant. Maybe add some padding to make it clearer? E.g. `$"foobar{Data?.ToString()}"`). The point is that having an explicit call to `ToString()` avoids **boxing**. Finally, *Data* could be null, so we should add that question mark (but it will cost a few nanoseconds). – l33t Aug 19 '21 at 20:35
  • Ok, I see your point, but... :) In that case, you should add `"foobar"` in your tests. Interesting... `$"foobar{Data?.ToString()}"` is compiled to `string.Concat("foobar", Data.ToString("x2"))` – marbel82 Aug 23 '21 at 12:25
  • 1
    I found interesting blog post @meziantou [Interpolated strings: advanced usages](https://www.meziantou.net/interpolated-strings-advanced-usages.htm) – marbel82 Aug 23 '21 at 13:39
5

string interpolation is turned into string.Format() at compile-time.

Also in string.Format you can specify several outputs for single argument, and different output formats for single argument. But string interpolation is more readable I guess. So, it's up to you.

a = string.Format("Due date is {0:M/d/yy} at {0:h:mm}", someComplexObject.someObject.someProperty);

b = $"Due date is {someComplexObject.someObject.someProperty:M/d/yy} at {someComplexObject.someObject.someProperty:h:mm}";

There is some performance test results https://koukia.ca/string-interpolation-vs-string-format-string-concat-and-string-builder-performance-benchmarks-c1dad38032a

Paul
  • 105
  • 1
  • 3
  • 2
    string interpolation is **just sometimes** turned into `String::Format`. and sometimes into `String::Concat`. And the performance-test on that page is imho not really meaningful: the amount of arguments you pass to each of those methods is dependent. concat is not always the fastest, stringbuilder is not always the slowest. – Matthias Burger Apr 09 '19 at 13:11
5

The question was about performance, however the title just says "vs", so I feel like have to add a few more points, some of them are opinionated though.

  • Localization

    • String interpolation cannot be localized due to it's inline code nature. Before localization it has be turned into string.Format. However, there is tooling for that (e.g. ReSharper).
  • Maintainability (my opinion)

    • string.Format is far more readable, as it focuses on the sentence what I'd like to phrase, for example when constructing a nice and meaningful error message. Using the {N} placeholders give me more flexibility and it's easier to modify it later.
    • Also, the inlined format specifier in interploation is easy to misread, and easy to delete together with the expression during a change.
    • When using complex and long expressions, interpolation quickly gets even more hard to read and maintain, so in this sense it doesn't scale well when code is evolving and gets more complex. string.Format is much less prone to this.
    • At the end of the day it's all about separation of concerns: I don't like to mix the how it should present with the what should be presented.

So based on these I decided to stick with string.Format in most of my code. However, I've prepared an extension method to have a more fluent way of coding which I like much more. The extension's implementaiton is a one-liner, and it looks simply like this in use.

var myErrorMessage = "Value must be less than {0:0.00} for field {1}".FormatWith(maximum, fieldName);

Interpolation is a great feature, don't get me wrong. But IMO it shines the best in those languages which miss the string.Format-like feature, for example JavaScript.

Zoltán Tamási
  • 11,389
  • 7
  • 58
  • 81
  • Thank you for adding to this. – Krythic Jun 12 '20 at 23:46
  • 5
    I'd disagree on maintainability; granted ReSharper makes it somewhat easier to match up the inserted values with their corresponding indices (and vice versa) but I think it's still more cognitive load to figure out if `{3}` is X or Y especially if you start rearranging your format. Madlibs example: `$"It was a {adjective} day in {month} when I {didSomething}"` vs `string.Format("It was a {0} day in {1} when I {2}", adjective, month, didSomething)` --> `$"I {didSomething} on a {adjective} {month} day"` vs `string.Format("I {2} on a {0} {1} day", adjective, month, didSomething)` – drzaus Jul 22 '20 at 19:50
  • 1
    @drzaus Thanks for sharing your thoughts. You have good points, however it's true only if we use only simple, well-named local variables. What I've seen quite many times is complex expressions, function calls, whatever put into interpolated string. With `string.Format` I think you are much less prone to this issue. But anyway, this is why I emphasized that it's my opinion :) – Zoltán Tamási Jul 23 '20 at 06:51
4

You should note that there have been significant optimizations on String Interpolation in C#10 and .NET 6 - String Interpolation in C# 10 and .NET 6.

I've been migrating all of my usage of not only string formatting, but also my usage of string concatenation, to use String Interpolation.

I'd be just as concerned, if not more, with memory allocation differences between the different methods. I've found that String Interpolation almost always wins for both speed and memory allocation when working with a smallish number of strings. If you have an undetermined (not known at design-time) number of strings, you should always use System.Text.StringBuilder.Append(xxx) or System.Text.StringBuilder.AppendFormat(xxx)

Also, I'd callout your usage of += for string concatenation. Be very careful and only do so for a small number of small strings.

Dave Black
  • 6,539
  • 2
  • 49
  • 38
3

Maybe to late to mention but didnt found others mentioned it: I noticed the += operator in your question. Looks like you are creating some hex output of something executing this operation in cycle.

Using concat on strings (+=) especially in cycles may result in hardly foundable problem: an OutOfMemoryException while analysing the dump will show tons of free memory inside!

What happens?

  1. The memory management will look for a continous space enough for the result string.
  2. The concatenated string written there.
  3. The space used for storing value for original left hand side variable freed.

Note that the space allocated in step #1 is certainly bigger than the space freed in step #3.

In the next cycle the same happens and so on. How our memory will look like assuming 10 bytes long string was added in each cycle to an originally 20 bytes long string 3 times?

[20 bytes free]X1[30 bytes free]X2[40 bytes free]X2[50 bytes allocated]

(Because almost sure there are other commands using memory during the cycle I placed the Xn-s to demonstrate their memory allocations. These may be freed or still allocated, follow me.)

If at the next allocation MM founds no enough big continous memory (60 bytes) then it tries to get it from OS or by restructuring free spaces in its outlet. The X1 and X2 will be moved somewhere (if possible) and a 20+30+40 continous block become available. Time taking but available.

BUT if the block sizes reach 88kb (google for it why 88kb) they will be allocated on Large Object Heap. Free blocks here wont be compacted anymore.

So if your string += operation results are going past this size (e.g. you are building a CSV file or rendering something in memory this way) the above cycle will result in chunks of free memory of continously growing sizes, the sum of them can be gigabytes, but your app will terminate with OOM because it wont be able to allocate a block of maybe as small as 1Mb because none of the chunks are big enough for it :)

Sorry for long explanation but it happened some years ago and it was a hard lession. I am fighting against unappropriate use of string concats since then.

cly
  • 647
  • 3
  • 10
0

There is an important note about String.Format in microsoft's site: https://docs.microsoft.com/en-us/dotnet/api/system.string.format?view=net-6.0

"Instead of calling the String.Format method or using composite format strings, you can use interpolated strings if your language supports them. An interpolated string is a string that contains interpolated expressions. Each interpolated expression is resolved with the expression's value and included in the result string when the string is assigned. "

ozan.yarci
  • 81
  • 1
  • 5