Free tool to create class diagrams or method tables from an assembly or C # project?

Is there a free, simple and quick tool that can generate class diagrams, or maybe even a simple table containing a list of classes and methods inside a C # assembly or project? Basically I only need a list of classes and methods in a readable format. It would be better if he also accepted the XML documentation, but this is not required.

I think this should not be too hard to implement with Reflection.

+3
source share
3 answers

Doxygen , #, .

0

You can use the Architecture tools in Visual Studio 2010 Ultimate. This allows you to generate a "dependency graph." In a readable way, you can look into your assembly using the "Class View", which can also be found in Visual Studio. Hope this helps

0
source

Source: https://habr.com/ru/post/1764636/


All Articles