标签: asp.net-mvc razor
使用此代码时:
<span>@string.Format("{0}{1}", true ? "ABC " : string.Empty, true ? "<a href=\"https://example.org\">link</a>" : string.Empty) </span>
输出为
ABC <a href="https://example.org">link</a>
但是我正在努力实现
ABC link
https://dotnetfiddle.net/fAAxIh