Reputation: 1607
I understand that there are different ways to render reusable HTML snippets in ASP.NET MVC. Here are two possibilities that people generally refer as a "helper" approach:
@helper functionName() { }
)Which performs faster?
NOTE: I already know that the performance of an HtmlHelper is faster than a Partial View. But, my question is about comparing the performance of HtmlHelper -vs- Razor Helper (e.g. @helper syntax)
Upvotes: 2
Views: 736