编程语言
首页 > 编程语言> > 如何在C#6.0字符串插值中输入引号字符

如何在C#6.0字符串插值中输入引号字符

作者:互联网

特定

IDictionary<string, string> x;

以前你可以做(​​作为带引号的参数代码示例):

string.Format("{0}", x["y"]);

格式化C#6.0字符串插值的正确方法是什么?

$"{x["y"]}"   // compiler error due to the quotes on the indexer value
              // UPDATE:  actually does work, must have had another typo I missed

将引号转义为

\"

不行,做

 var b = "y";
 ...
 $"{x[b]}"

看起来很尴尬.

解决方法:

这对我有用:

var dictionary= new Dictionary<string, string>();
dictionary.Add("x","value of x");
Console.WriteLine($"x is {dictionary["x"]}");

确保您的项目设置为使用C#语言级别的6.0版本(这是VS2015上的默认选项).

编辑:您也可以尝试here.(请务必查看“C#6.0 Beta”).

标签:c,c-6-0,string-interpolation
来源: https://codeday.me/bug/20190612/1222301.html