c# - Performance of HtmlHelper vs Razor Helper (@helper) -
i understand there different ways render reusable html snippets in asp.net mvc. here 2 possibilities people refer "helper" approach:
- htmlhelper extension methods
- razor helper methods (e.g.
@helper functionname() { }
)
which performs faster?
note: know performance of htmlhelper faster partial view. but, question comparing performance of htmlhelper -vs- razor helper (e.g. @helper syntax)
Comments
Post a Comment