In Visual Studio, How do I show all classes inherited from a base class?
For example, in ASP.NET MVC there are several 'ActionResult' types -- and they all inherit from / implement the base class 'ActionResult'.
It looks like unless you just 'know' that 'View' and 'Json' are valid 'ActionResult' types, there is no way you can easily find this information out.
Please prove me wrong.
Is there something in the object browser that makes this easy to find out?
I'm even up for suggestions of tools outside of Visual Studio to discover this information about various classes. For example: is there something in Resharper that will help me out?