Looking for a free tool to visualize object relationships for C#

Posted by vfilby on Stack Overflow See other posts from Stack Overflow or by vfilby
Published on 2010-04-01T14:28:58Z Indexed on 2010/04/01 14:33 UTC
Read the original article Hit count: 224

Filed under:
|

Here is my ideal solution: a free tool that reads a .csporj or .sln and generates a pretty picture that shows all the objects and how they are related. By relationships, I don't mean inheritance but rather dependency. For example, if we have a Car object and Car has a member variable Wheel, I would like that Car depends on Wheel to be visualized in the graph.

I know visual studio can do inheritance graphs, but that is only half of what I am looking for.

Is what I am looking for possible? Are there any tools that do something similar?

Related question for java: http://stackoverflow.com/questions/1824261/are-there-any-tools-to-visualize-the-objects-being-used-in-a-program

© Stack Overflow or respective owner

Related posts about tools

Related posts about .NET