无法识别的转义序列 C#6 字符串插值

Unrecognized Escape Sequence C# 6 String Interpolation

根据 New Features in C# 6,您应该能够这样声明字符串:

var name = "world";
WriteLine("hello, \{name}");

对于输出:

hello, world

我创建了一个新的控制台应用程序,将目标框架设置为 .NET Framework 4.6,但出现错误 "Unrecognized Escape Sequence"

我正在使用Visual Studio Ultimate 2015 CTP Version 14.0.22512.0 DP

字符串插值约定已更改。它现在使用“$”运算符:

var name = "world";
WriteLine($"hello, {name}");