剃刀评论语法
在剃刀视图中,服务器端评论的语法是什么?
我想评论这个代码:
/* @helper NavItem() { } */
@* here is the code to comment *@
以下两项工作
@{ /* This is a comment */} @//This is another comment
更新
随着新的Beta 3的MVC 3突出旧的方法将无法正常工作。
@{ //This is a comment } @{/* This is a multi line comment */} @* This is a comment, as well *@
是更新的方法@//This is a comment
@/* */
@//This is a comment
和@/* */
将不再工作。
在.cshtml文件中,只需按下Ctrl + K和Ctrl + C ,你会看到评论是由Visual Studio自动添加(或者, cntrl_k和cntrl + u取消注释)。否则,如果你想手动写入,只是随随便便
@* Your Code *@
如果在你看来,你不能使用标准的HTML <!-- ... //-->
或.NET风格<%-- .. --%>
吗?