Home > Articles > Programming > C#

A Pleasant New C# Syntax for String Interpolation

Does your C# code produce strings that combine text and computed values? The new features for string interpolation in C# 6 will make that code cleaner and clearer. Bill Wagner, author of Effective C#: 50 Specific Ways to Improve Your C#, Second Edition, shares his enthusiasm for this new feature's ability to let you do more with less.
Like this article? We recommend

For the first several versions of C#, we formatted strings using the standard string.Format API:

var formattedOutput = string.Format("{0}, {1} is {2} years old", 
    person.LastName, person.FirstName, person.Age);

This API had minimal improvements over the syntax used with printf and related APIs that were first developed for the C language. Those APIs date back to the mid-1970s or earlier.

We should have progressed beyond this API in all those years. Finally, with C# 6, the new features for string interpolation will make your code much more clear when you're producing strings that are a combination of text and computed values. Working with formatted text is so increasingly common that this could be the killer feature for C# 6.

In this article, I show you the shipping syntax for string interpolation and discuss many of the scenarios in which you'll use it. I also discuss some of the syntax changes that this feature underwent from its initial public preview until its final release. Some resources on the Web still refer to previous prerelease syntaxes for this feature, so it's important to know what's current.

Let's begin by covering the current syntax through a simple example. The following line of code produces the same value as in the previous example:

var formattedOutput = $"{person.LastName}, {person.FirstName} is {person.Age} years old";

This example provides the basic syntax used in string interpolation in C# 6. You introduce string interpolation by starting the format string with the dollar sign ($) character. The "holes" in the format string are noted by the brace ({ }) characters. The main improvement is inside the braces, where you place C# expressions instead of positional indices to later parameters. This is a great improvement in readability—and much easier to get correct. Instead of using {0} and looking for that parameter, you find {person.LastName}, which instantly tells you what will be placed in the formatted string. Notice that one of the arguments I'm using is an integer (person.Age). Just like with string.Format, we can use any object. When that object is not a string, the framework will call ToString() to convert it to a string. The same construct could be written this way:

var formattedOutput =
    $"{person.LastName}, {person.FirstName} is {person.Age.ToString()} years old";

Remember that you can put any valid C# expression between the braces; you're not limited to variables. For example, you could write a point and its distance from the origin in this way:

var str =
    $"{{{pt.X}, {pt.Y}}} is {Math.Sqrt(pt.X * pt.X + pt.Y * pt.Y)} from the origin";

Two concepts are new. Let's go through this example carefully, and you'll see how these concepts work.

First, the final expression is a call to Math.Sqrt, where the parameter is X^2 + Y^2 (using the fundamental Pythagorean theorem to compute the hypotenuse of a right triangle):

{Math.Sqrt(pt.X * pt.X + pt.Y * pt.Y)}

Any valid C# expression is allowed inside the { } characters in an interpolated string. That includes—but is not limited to—method calls, LINQ queries, computations, and conditionals.

The extra braces in the statement (red in the syntax highlighting) provide an example of how to write an opening or closing brace ({) or (}) in an interpolated string. Writing a double left brace ({{) produces the opening brace ({) in the output. Writing a double right brace (}}) produces the closing brace (}) in the output.

{{{pt.X}, {pt.Y}}

For example, if a point has the values (3, 4) for x, y, this statement will set str to the value {3, 4} is 5 from the origin.

Most likely, though, the values of x and y, and almost certainly the distance, are doubles that don't have a nice output. The default representation will have any number of decimal places, and it won't be formatted nicely for you. The string interpolation feature allows you to specify format strings as part of the replacement. You can specify a floating-point value with two digits to the right of the decimal point as follows:

var str =
$"{{{pt.X:F2}, {pt.Y:F2}}} is {Math.Sqrt(pt.X * pt.X + pt.Y * pt.Y):F2} from the origin"; 

You can place any valid format string in the "hole" for that expression. Place a colon (:) after the expression, and the format string following the colon. The valid format strings depend on the type of the expression preceding the colon. Here, my format strings are all F2, which displays two digits following the decimal point for a floating-point number.

After these changes, my line of code is getting rather long. Let's use the verbatim string literal to split the string:

var str = $@"{{{pt.X:F2}, {pt.Y:F2}}} is 
 {Math.Sqrt(pt.X * pt.X + pt.Y * pt.Y):F2} from the origin";

Yes, you can combine the verbatim string literal with the interpolated string constructs.

All Valid C# Expressions Are Okay

Now let's explore some of the edges of this feature. I said any valid C# expression is legal inside the braces ({}) for string interpolation.

Many APIs can take a string parameter. For example, the following line formats the current date in a custom format:

var formattedDate = $"The current date is {DateTime.Now.ToString("MMM d, yyyy")}";

Notice that no special characters are needed to escape the quotes where the current date is displayed. All the text you place between the opening and closing braces in a formattable string will be parsed as C# source code. It will not be interpreted as a literal string. Any legal C# expression is valid. Whenever I demo this feature at a conference or user group, people in the audience always try to come up with a C# construct that won't work. They haven't managed it yet. One person even suggested a string.Format call inside an interpolated string. Yes, it works. But it's really ugly. And yes, you can nest interpolated strings. Please don't write this kind of construct in your own code! I wrote the following line just to show that the C# compiler processes interpolated string arguments as regular C#:

var nameDisplay = $@"{(hello ? $"Hello {person.FirstName} {person.LastName}" 
    : $"Goodbye {person.LastName}, {person.FirstName}")}";

Well, that is very ugly. But the nested interpolated strings parse correctly.

{(hello ? $"Hello {person.FirstName} {person.LastName}" 
    : $"Goodbye {person.LastName}, {person.FirstName}")}

There is no need to write anything this crazy. I strongly recommend against it. But the strength of the parser brings some very strong advantages. One area that I leverage often is Razor views. If you build a site using ASP.NET 5 (the major upgrade coming to ASP.NET), you can use the string interpolation feature in your user views. For example, the existing ASP.NET templates create this code in the _LoginPartial.cshtml file:

@Html.ActionLink("Hello " + User.Identity.GetUserName() + "!", "Index", "Manage",
        routeValues: null, htmlAttributes: new { title = "Manage" })

The updated template creates this code:

<a asp-controller="Manage" asp-action="Index" title="Manage">Hello
    @User.GetUserName()!</a>

Notice more here than just the changes for interpolated strings. The new attributes provide a more concise syntax for the Html.ActionLink call. I really like how the Razor syntax adopted its own natural constructs to use string interpolation in views. You just add the "at" symbol (@) to any C# expression in your HTML. As I've adopted this, my Razor views have reduced in size by almost one-third.

Internationalization (and a Bit of History)

One of the final updates to this feature involved a bit of a change that made string interpolation much richer in scenarios where your code must format strings for a culture or language that differs from the existing culture.

All the examples shown so far have created strings. The compiler will format the string using the current culture. But the dollar sign ($) character doesn't have to be limited to creating a string. You can force the compiler to create a different type, FormattableString. This type represents a composite format string, along with the arguments to be formatted. It enables you to reach into the pipeline and have greater control over the final output.

You might not want the string interpolation to use the current culture when formatting objects (numbers, dates, and so on). You can specify a particular culture for the format operation by calling an overload of string.Format. The following example formats a string containing a number for Germany, where the period (.) character used in the U.S. to separate the whole number from the fractional part should be replaced with the comma (,) character:

FormattableString fStr = $"This follows the German text format: {42.0 / 19.0}";
var output = string.Format(
    System.Globalization.CultureInfo.CreateSpecificCulture("de-de"),
    fStr.Format,
    fStr.GetArguments());

This feature was added later in the development cycle, in answer to many requests from developers who need to create output for a different culture than that of the current location. This feature was especially important for developers creating web applications.

That wasn't the only change during the development of this feature. In its earliest implementations, this feature simply replaced the positional placeholders with named arguments in any call to string.Format. To light up the feature, the brace ({ }) characters were escaped:

var formattedOutput = string.Format(
"\{person.LastName}, \{person.FirstName} is \{person.Age} years old");

But this usage had many limitations. It wasn't easy to print the braces in a formatted string. Also, being available only in a call to string.Format limited many scenarios.

Later, the $ syntax was introduced, making formatting much easier, and opening other scenarios, including the Razor-specific syntax in ASP.NET 5 that I mentioned earlier. The last changes supported the specific culture formatting.

You can see these changes in the history of the language design notes, available on GitHub. Some of the earlier notes were published when the Roslyn code was on CodePlex. Those notes may be migrating to GitHub over time.

Initial Guidance on String Interpolation in C#

I really enjoy this new feature. It has completely replaced any idiom where I used {0} and {1} in any code I write using the latest version of C#. The simplicity improves the code quality immensely. However, I haven't taken the time to go back over any existing code to change it. The new string interpolation feature compiles down to almost exactly the same constructs that we used in earlier versions. Although I prefer the new code, unless I'm changing the function in which an old construct was used, I don't update it. The benefits aren't great enough for the extra churn. If I'm making major updates to a routine, I update the code to use this new feature; I don't do it for bug fixes or new features elsewhere in a class.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020