vote up 3 vote down star

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?

flag

What kind of UML diagram? They have quite a few. – Johannes Rössel Oct 21 at 13:22
UML class diagram, sorry I missed that out. – Gergely Orosz Oct 21 at 13:52

3 Answers

vote up 3 vote down check

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|flag
vote up 2 vote down

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|flag
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 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 at 16:54
vote up 2 vote down

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|flag
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 at 22:26
I have not tried to do it from dll's...only from source files. – CSharpAtl Oct 27 at 12:52

Your Answer

Get an OpenID
or

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