Create a UML diagram from C # class

I have classes generated by nHibernate that function as BO for an MVC project stored in SQL db. I would like to make existing code in UML diagrams to start playing with code utilities.

Like what is given here only for SQL / nhibernate - SO offers Tools for creating a UML class diagram from C # source or dll , and it is really very close - apart from the last answer, there are all 2 years. Of course, the scope of knowledge has expanded since then.

+4
source share
1 answer

Tool not required:

  • Right-click the name of your project, then select Show Chart Class, which will automatically generate a list of all your classes.
  • After that, I will remove any classes that you do not need, and extend the ones that you really need.

I assume that you are using Visual Studio 2010 .

Where to select view class diagram

+9
source

All Articles