I'm writing a console application which I'd like to apply MVC pattern. Since ASP.net MVC is already a mature framework, I wonder if I can use it for my console application instead of reinventing the wheel.
For instance, can i inherit from Microsoft.AspNet.Mvc.Controller to derive my own controller class?
I have done some research on Google but couldn't find anything specific to this question.