Cat I create a delegate on @helper function?
@helper DisplayCategoryTree(int? parentId)
{
Func<Category, CategoryNode, MvcHtmlString> act = new Func<Category, CategoryNode, MvcHtmlString>(GetChildItem);
act(Category, CategoryNode);
}
@helper GetChildItem(Category, CategoryNode)
{
}
The razor helpers are returning System.Web.WebPages.HelperResult which implements
IHtmlStringso you can use that instead ofMvcHtmlString.So this declaration should work fine: