如何在C#6.0字符串插值中输入引号字符
本文关键字:输入 字符 插值 字符串 C#6 | 更新日期: 2023-09-27 18:00:04
给定
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上的默认选项)。
编辑:你也可以在这里试试。(请确保选中"C#6.0 Beta")。