up vote 18 down vote favorite
3
share [g+] share [fb]

I'm looking for a tool that would generate an UML diagram from a C# project or the compiled .NET dll. I've yet failed to come across any and the built-in basic class diagram generation in Visual Studio is not sufficient to my needs.

Any suggestions?

link|improve this question

What kind of UML diagram? They have quite a few. – Joey Oct 21 '09 at 13:22
UML class diagram, sorry I missed that out. – Gergely Orosz Oct 21 '09 at 13:52
feedback

6 Answers

up vote 8 down vote accepted

We use Modelmaker. It can work with both Delphi and C#

[http://www.modelmakertools.com/modelmaker/index.html%5D%5B1%5D

Dave Craggs

[Update] I should add that it does more than just diagrams, it can be used for reverse engineering, refactoring and the like. It's been going for a while now and has many great features.

link|improve this answer
feedback

The Guys at Tigris.org have also done some work on this. Open Source Link

link|improve this answer
feedback

We use Enterprise Architect it is not free but it is pretty good tool for the price. It will generate the UML diagram from the C# source code.

link|improve this answer
Neither modelmaker or enterprise architect appear to import c# partial classes correctly. They appear to be parsing the source files, and I would prefer they start with reflection on the assemblies. This is a big showstopper for me. Correct me if I am wrong. – P a u l Oct 26 '09 at 22:26
I have not tried to do it from dll's...only from source files. – CSharpAtl Oct 27 '09 at 12:52
feedback

The combination of Graphviz and Doxygen can generate some nice class diagrams (and much more) from C# source. Both tools are free.

Here's an example:

alt text

link|improve this answer
Good combination; it's worth mentioning that you have to install a TeX implementation as well to work (e.g. MikeTex). The problem is that these diagrams are only generated on a class-basis and no overview diagram is created. – Gergely Orosz Oct 26 '09 at 15:37
You only need Tex if you want latex support. I have never installed Tex. If you generate the HTML docs, there is a single diagram created for all classes in your doxygen project. – Todd Stout Oct 26 '09 at 16:54
1  
The diagram on the picture contains so little information that I doubt it could be useful and can be called UML class diagram at all. I would prefer something like this: agilemodeling.com/artifacts/classDiagram.htm – Mikhail Jul 19 '11 at 17:19
One configuration switch changes the output to UML Class diagrams (see: this question) – jwernerny Sep 20 '11 at 20:08
feedback

Have you tried NDepend tool for .NET developers? It comes with both a dependency graph and a dependency matrix and integrates in VS. The graph and matrix can be generated from .NET assemblies and they are interactive.

You can download and use the free trial edition for a while and make your own opinion.

More on NDepend Dependency Graph enter image description here

More on NDepend Dependency Matrix: enter image description here

Disclaimer: I am part of the tool team

link|improve this answer
feedback

You might want to try the code visualization and exploration tools in Visual Studio 2010 Ultimate. You can create sequence, dependency graphs, and layer diagrams from code. VS 2010 also supports UML class, sequence, component, use case, and activity diagrams. As for reverse-engineering UML diagrams, see this post on the VS Architecture & Modeling tools forum: Is it possible to reverse engineer C# code into an UML Class Diagram?

I've posted more links on my profile for more info.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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