是否可以在ASP.NET MVC 5中为@helpers编写注释?

时间:2017-02-01 16:52:16

标签: asp.net asp.net-mvc razor asp.net-mvc-5 razor-declarative-helpers

假设我有App_Code\Helpers.cshtml中定义的帮助:

@helper PageHeader(string h1, string h2) { 
    <h1>@h1</h1>
    <h2>@h2</h2>
}

我想知道如何添加xml注释来描述这个帮助器的作用,并描述参数,就像在.NET代码中通常那样:

/// <summary>
/// Description
/// </summary>

...所以我得到了VS intellisense的评论。

0 个答案:

没有答案