小编典典

如何在插值字符串中使用三元运算符?

c#

我对为什么此代码无法编译感到困惑:

var result = $"{fieldName}{isDescending ? " desc" : string.Empty}";

如果我将其拆分,则可以正常工作:

var desc = isDescending ? " desc" : string.Empty;
var result = $"{fieldName}{desc}";

阅读 625

收藏
2020-05-19

共1个答案

小编典典

根据文档

插值字符串的结构如下:

{ <interpolationExpression>[,<alignment>][:<formatString>] }

问题在于冒号用于表示格式,例如:

Console.WriteLine($"The current hour is {hours:hh}")

解决方案是 条件 包装 在括号中:

var result = $"Descending {(isDescending ? "yes" : "no")}";
2020-05-19