Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visualize the class structure in a .NET dll [closed]

Tags:

c#

.net

I get a library with two DLLs, but without the detailed document. I want get a quick view of its class design.

I know that I can use the Object Browser in Visual Studio to look into them. But it is not very intuitive. Is there a tool that displays the dependency graph of the library, or more formally the UML diagram. The input is just the DLL.

Thanks.

like image 964
Yin Zhu Avatar asked Apr 23 '11 15:04

Yin Zhu


2 Answers

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

like image 159
Oded Avatar answered Nov 02 '22 17:11

Oded


I assume you're after the class diagram? Other UML diagrams are very hard to reverse engineer.

You could have a try with several extensions for Visual Studio

like image 41
Emond Avatar answered Nov 02 '22 15:11

Emond