web-dev-qa-db-ja.com

かみそりのコメント構文

かみそりビューのサーバー側コメントの構文は何ですか?

このコードをコメントしたい:

/*
@helper NavItem() {

}
*/
111
stacker
@* here is the code to comment *@
197
JarrettV

次の両方の作業

@{
/*
    This is a comment
*/}


@//This is another comment

更新

MVC 3の新しいベータ版では、ハイライトの古い方法は機能しません。

@{
    //This is a comment
}

@{/*
      This is a multi
      line comment
*/}

@*
      This is a comment, as well
*@

更新されたメソッドは@//This is a commentおよび@/* */は機能しなくなります。

43
Buildstarted

.cshtmlファイル内で、cntrl + kおよびcntrl + cを押すだけで、コメントがVisual Studioによって自動的に追加されます(または、cntrl_kcntrl +はコメントを外します。)または、手動で書き込みたい場合は、

@* Your Code *@

ビューにある場合は、標準のHTMLを使用できませんでした<!-- ... //-->または.NETスタイル<%-- .. --%>

1
Jonathan Bates