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

.net, dll

Solution

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

Problem

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

Original source