Is there anything out there that for .NET that can generate UML diagrams from code. Preferably an addin for Visual Studio. Starting work on a mature project that has little architectural documentation can be painful at first. Eventually you get the ins and outs of the code but helping to see how the code all fits together from the get go would be wonderful.
|
|
|
|
|
|
|
Class diagram doesn't always work. I often find it wont display the classes for some reason. Pen & pencil or talking with people who work on the project is what I have to rely on. |
||
|
|
|
|
If you generate UML class diagrams for a big project the result is going to be quite chaotic. Sometimes I use the class diagrams in Visual Studio. I manually add the classes I think deserve some extra explanations. The diagrams are not UML, but it is close enough. They are always up-to-date and you can change the diagram and the code is updated automatically. To convey the bigger picture of a design I use these UML stencils and draw the diagram by hand. For my points to come across to the people I am communicating with, I find it best to omit irrelevant details, so we can focus on what I think is important. No automatic UML generation tool can figure out which irrelevant details to omit. |
||
|
|
|
|
If you have Visio and select Project->Visio UML->Reverse engineer you will get a uml of the project. Sparx Systems has made a product called "Enterprise Architect" that should be able to do the trick as well. |
||
|
|
|
|
In visual studio 2005/8 you can right click on a class and then select View in Class Diagram which will create a new ClassDiagram containing the selected class and any related classes. |
||
|
|
