One of the best features in VS2015 is Roslyn as main compiler for .Net. This opens a new world of possibilities for writing code in a more elegant way. One of these options is the ability to use String Interpolation instead of the classic String.Format () .
If anyone would not read the Wikipedia link or study a little, maybe it is best see the following lines of code
using System;
namespace ConsoleApplication1
{
...