C#6.0 have a string interpolation - a nice feature to format strings like:
var name = \"John\"; WriteLine($\"My name is {name}\");
The ex
The C# 6.0 string interpolation won't help you if the format string is not in your C# source code. In that case, you will have to use some other solution, like this library.