Folks,
As of today should I introduce T4MVC in my project or use strongly typed goodness from MvcContrib?
return RedirectToAction(MVC.MyController.MyAction());
or
return RedirectToAction<MyController>(c => c.MyAction());
Trying to stick with standard/mainstream and stay up to date.
I know, there are Q&A on this site, I am interested to hear what is latest & greatest, rather than what was 2 years ago.
Thanks in advance.