Tanuj Wadhwa
Tanuj Wadhwa

Reputation: 2045

Is it possible to view all the methods and classes created inside a dll file?

Can i really see inside a dll file, for the methods or the classes that reside in the dll file?

Upvotes: 5

Views: 13277

Answers (2)

Habib
Habib

Reputation: 223392

Add the dll to your project, then in visual studio

View Menu -> Object Browser

You would be able to see the publicly exposed methods and properties
Also you can open .net dll in the tool .Net Reflector, its very powerful tool and may let you see the code if its not obsfucated

Upvotes: 11

Paul Sullivan
Paul Sullivan

Reputation: 2875

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

See ILSpy downloads page

Upvotes: 6

Related Questions