Guest User

Untitled

a guest
Jan 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public static class HtmlHelperExtensions
  2. {
  3. public static string ControllerName<TController>(this HtmlHelper helper) where TController : Controller
  4. {
  5. return typeof(TController).Name.Replace("Controller", string.Empty);
  6. }
  7. }
Add Comment
Please, Sign In to add comment