Visualize class structure in .NET dll

I get a library with two DLLs, but without a detailed document. I want a quick overview of his class.

I know that I can use Object Browser in Visual Studio to examine them. But this is not very intuitive. Is there a tool that displays a dependency graph of a library or a more formal UML diagram. Input is just a DLL.

Thanks.

+6
source share
2 answers

Depending on the version of Visual Studio, you can use the class constructor.

+1
source

I assume you are after class diagram? Other UML diagrams are very difficult to format.

You can try with several extensions for Visual Studio

+1
source

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


All Articles