Go to dervied classes

  • Thread starter Thread starter Clive Dixon
  • Start date Start date
C

Clive Dixon

Does anyone know of any way with VS 2005 source editor of navigating to
class(es) derived from a particular class/interface, in the same way
Reflector does?
 
If you look at a class in the Class View window, you can right click on it
and select View Class Diagram. This adds a class diagram to your project
which just has that class on it. You can then right click on it to select
View Derived Classes. This adds all the classes that inherit from it to the
diagram,. You can right click on anyone of these classes and select view code
to go to the implementation.
Its not exactly like reflector but can be handy

HTH
 
At first it struck me as odd that you wanted to navigate to multiple
places... That would be impossible.

You can however right click on your class name, and select "Find All
References". Derived classes will show in this list, though it also includes
declared objects.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top