剃刀视图中服务器端注释的语法是什么?
我想对这段代码进行注释:
/* @helper NavItem() { } */
如果它在您的视图中,您不能使用标准的 HTML <!-- ... //-->或.NET 样式 <%-- .. --%>吗?
<!-- ... //-->
<%-- .. --%>
以下两项工作
@{ /* This is a comment */} @//This is another comment
随着 MVC 3的新 Beta 版本的发布,旧的高亮显示方法将不再起作用。
@{ //This is a comment } @{/* This is a multi line comment */} @* This is a comment, as well *@
更新后的方法 @//This is a comment和 @/* */将不再工作。
@//This is a comment
@/* */
@* here is the code to comment *@
在里面。Cshtml 文件,只需按 Cntrl + k和 Cntrl + c,您将看到评论是由视觉工作室自动添加。(或者,Cntrl _ k和 Cntrl + u用于取消注释。) 或者,如果你想手动编写,那么,只要按照
@* Your Code *@