If you are using Visual Studio 2010, you can create a dependency graph .
From the menu, select "
Architecture> Create Dependecy Graphics> By Class
Here is an example of what it shows (in a very small project):

And you can even see the dependencies between the two classes. Take a look at the following image:

If you expand the Logger class and click on Scraper , you will see which methods are called (in Logger ) on Scraper .
At this moment, I have no example of inheritance, but you can always create a project and test it yourself.
Oscar mederos
source share