Can I see all the methods and classes created inside the DLL file?

Can I see inside a dll file for methods or classes that are in a DLL file?

+3
source share
2 answers

You can add them to Visual Studio, as described in other answers, but if you want to see the code and don't have .pdb, then you can use ILSpy (replacement for .NET Reflector)

See ILSpy Download Page

+4
source

Add a dll to your project, then to visual studio

View menu → Object Browser


.net dll .NET Reflector, ,

+7

All Articles