我很困惑为什么这段代码不会编译:
var result = $"{fieldName}{isDescending ? " desc" : string.Empty}";
如果我将它拆分,它可以正常工作:
var desc = isDescending ? " desc" : string.Empty;
var result = $"{fieldName}{desc}";
答案 0 :(得分:585)
插值字符串的结构如下:
$ "{ <interpolation-expression> <optional-comma-field-width> <optional-colon-format> }"
问题是冒号用于表示格式,例如:
Console.WriteLine($"Time in hours is {hours:hh}")
所以, TL; DR 的答案是:将条件括在括号中:
var result = $"descending? {(isDescending ? "yes" : "no")}";