asp.net mvc 3

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

我想评论这段代码:

/*
@helper NavItem() {

}
*/

@* here is the code to comment *@

以下两项工作

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


在.cshtml文件中,只需按下Ctrl + K和Ctrl + C,你会看到评论是由Visual Studio自动添加的(或者,cntrl_k和cntrl + u取消注释)。否则,如果你想手动编写它, ,只是随便吧

@* Your Code *@
链接地址: http://www.djcxy.com/p/85285.html

上一篇: asp.net mvc 3

下一篇: Where to put comments in an IF THEN ELSE construct