free tool to generate class diagram or method table from a C# assembly or project? [closed]
Is there a free, easy and quick tool which can generate class diagrams or maybe even a simple table containing the list of class and methods inside an C# assembly or a project? Basically what I need is just the list of class and methods in a readable format. It would be better if it takes the xml documentation as well, but it's not required.
I guess it should be not too hard to implement using Reflection.
You could use Reflector with autodiagrammer addin. The demo version is enough for that usage.
This addin generates a class diagram from an assembly :
Doxygen will do it by parsing C# source code but doesn't understand assemblies.
You can use the Architecture tools in Visual Studio 2010 Ultimate. This allows you to generate "Dependency Graph". In readable way you can peek at your assembly by "Class View" which can be also found in Visual Studio. Hope this helps
精彩评论