Hello all,
I was reading about some of the new features in c# (http://blogs.msdn.com/b/csharpfaq/archive/2014/11/20/new-features-in-c-6.aspx) when running on the newest version
of the framework and i kept getting compilation errors when using the "string interpolation feature" liek
var a = "1";
var b = "2";
var s = "\{a} is not \{b}";
What is wrong?
Go to the complete details ...