Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
让我们说 { string domain="domain.com"; }
{ string domain="domain.com"; }
我喜欢输出
webmaster@domain.com,所以我用
webmaster@domain.com
webmaster@@domain不工作
webmaster@@domain
请建议正确的语法
也许不是最简单的方法,但我会尝试
@Html.Raw(string.Format("webmaster@{0}", domain))
正如OP(聪明地)注意到的那样
@string.Format("webmaster@{0}", domain)
我能想到的最简单的方法:
webmaster@@@domain
-或者-
@("webmaster@" + domain)