剃刀评论语法

时间:2010-08-01 17:02:06

标签: asp.net-mvc-3 razor comments

razor视图中服务器端注释的语法是什么?

我想对此代码发表评论:

/*
@helper NavItem() {

}
*/

4 个答案:

答案 0 :(得分:194)

@* here is the code to comment *@

答案 1 :(得分:43)

以下两项工作

@{
/*
    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@/* */将不再有效。

答案 2 :(得分:7)

在.cshtml文件中,只需按 cntrl + k cntrl + c ,您将看到评论由visual studio自动添加。(或者, > cntrl_k cntrl + u 取消注释。) 或者,如果你想手动编写,那么只需使用

@* Your Code *@

答案 3 :(得分:1)

如果在您的视图中,您是否无法使用标准HTML <!-- ... //-->或.NET样式<%-- .. --%>