views:

105

answers:

2

One thing I really, really miss from Javadoc is the ability to see which classes inherit the class you're looking at. So if you are looking at an abstract class (such as List) then you would be able to see all classes that inherit/implement the class/interface you're looking at. Is this available in the MSDN and I'm just missing it or is this really a missing feature?

+1  A: 

Such information is provided for some types (e.g. for WebRequest), unfortunately for very few. Can't say why it is so.

I'd recommend to use Reflector to get such information. It's fast and easy.

elder_george
+1  A: 

A better tool to use is Reflector

shahkalpesh
Note reflector finds child classes dynamically only for the set of assemblies it has open.
Richard