Go to dervied classes

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Clive Dixon

    Go to dervied classes

    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?


  • =?Utf-8?B?Q2lhcmFuIE8nJ0Rvbm5lbGw=?=

    #2
    RE: Go to dervied classes

    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
    --
    Ciaran O''Donnell
    try{ Life(); } catch (TooDifficultException) { throw Toys(); }



    "Clive Dixon" wrote:
    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?
    >
    >
    >

    Comment

    • =?Utf-8?B?RmFtaWx5IFRyZWUgTWlrZQ==?=

      #3
      RE: Go to dervied classes

      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.

      "Clive Dixon" wrote:
      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?
      >
      >
      >

      Comment

      Working...