Razor comment syntax

后端 未结 4 707
自闭症患者
自闭症患者 2020-12-02 10:09

What is the syntax for server side comment in razor view?

I want to comment this code:

/*
@helper NavItem() {

}
*/
4条回答
  •  伪装坚强ぢ
    2020-12-02 10:49

    Both of the following work

    @{
    /*
        This is a comment
    */}
    
    
    @//This is another comment
    

    Update

    With the new Beta of MVC 3 out the old methods of highlighting won't work.

    @{
        //This is a comment
    }
    
    @{/*
          This is a multi
          line comment
    */}
    
    @*
          This is a comment, as well
    *@
    

    Is the updated method @//This is a comment and @/* */ will no longer work.

提交回复
热议问题