I've seen that VS 2010 Ultimate can generate model graph from existing code. But VS 2010 Ultimate version costs 11K US$, way too much for my budget. Is there any good alternative to do graph visualization of .NET code?

link|improve this question
Have you considered applying for a Bizspark membership, allowing you to access all Microsoft products for free ? microsoft.com/bizspark – Pierre Aug 29 '10 at 14:11
feedback

3 Answers

up vote 1 down vote accepted

NDepend comes with a dependency graph coupled with a dependency matrix. You can try NDepend straight on your code thanks to a Free Trial Edition. Read more about this feature in this article Exploring Existing Code Architecture in Visual Studio. Any kind of graph is supported including:

  • Dependency Graph
  • Call Graph
  • Class Inheritance Graph
  • Coupling Graph
  • Path Graph
  • All Paths Graph
  • Cycle Graph
  • Large Graph visualized with Dependency Structure Matrix

Here are screenshots for illustration:

enter image description here

enter image description here

enter image description here

link|improve this answer
feedback

How about the graph add-in for .Net Reflector?

link|improve this answer
feedback

Reflector has addins which can already show something like this: http://reflectoraddins.codeplex.com/.

And I believe NDepend also has a dependency graph: http://www.ndepend.com/Screenshots.aspx.

link|improve this answer
Why the -1? Reason? – XIII Aug 29 '10 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.