ヘルパー クラスにパラメーターを渡す際に問題が発生しました
私のモデル
public DateTime? dTime { get; set; }
Darin Dimitrov が回答したヘルパー クラス
public static IHtmlString MyFunction(this HtmlHelper html, DateTime value)
{
return new HtmlString(value.ToString("dd/MM/yyyy"));
}
そして、日時を変換するためにmyviewにアクセスしています
foreach (var item in Model.lstCommet)
{
<div class="comment_time">@Html.MyFunction(item.dTime)</div>
}
しかし、得ています"ASP.DetailPageHelper.convertTime(System.DateTime)' has some invalid arguments"
私は何を間違っていますか?