"Knowledge has to be improved, challenged, and increased constantly, or it vanishes."

Archives

Archives / 2019 / August
  • The String Interpolation ($) Special Character

    While developing applications, it is quite common that you are required to produce formatted output. This is a common scenario for any developer whether you develop console application, web application or Mobile application. With C# 6 onwards Microsoft introduced a special character called interpolation operator ($) to help developers easily manipulate the string literals.

    In this article, I am briefly explaining the interpolation operator with the help of couple of examples.

    Let us consider the example of adding two numbers and print their sum as the output. Very simple example. The below is the old (ugly) way of doing this in C# with ASP.Net.

    int a = 2, b = 3, sum = a + b;

    Response.Write("The sum of " + a + " and " + b + " is " + sum);