かみそりビューのサーバー側コメントの構文は何ですか?
このコードをコメントしたい:
/*
@helper NavItem() {
}
*/
@* here is the code to comment *@
次の両方の作業
@{
/*
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
および@/* */
は機能しなくなります。
.cshtmlファイル内で、cntrl + kおよびcntrl + cを押すだけで、コメントがVisual Studioによって自動的に追加されます(または、cntrl_kとcntrl +はコメントを外します。)または、手動で書き込みたい場合は、
@* Your Code *@
ビューにある場合は、標準のHTMLを使用できませんでした<!-- ... //-->
または.NETスタイル<%-- .. --%>
?