How to open .dll files to see what is written inside?
you are better off with a decompiler like redgates .net reflector or jetbrains resharper decompiler. there are open source ones also like
http://www.jetbrains.com/decompiler/
http://ilspy.net/
Follow below steps..
- Go to Start Menu.
- Type Visual Studio Tool.
- Go to the folder above.
- Click on "Developer Command Prompt for VS 2013" in the case of VS 2013 or just "Visual Studio Command Prompt " in case of VS 2010.
- After command prompt loaded to screen type
ILDASM.EXE
press ENTER. ILDASM
window will open.Drag the.dll
file to window from your folder.Or click onFile->New
.Then Add required.dll
file.- After above steps Mainfest and
.dll
file will appear. Double click on these files to see what it contains.
I think you have downloaded the .NET Reflector & this FileGenerator plugin http://filegenreflector.codeplex.com/ , If you do,
Open up the Reflector.exe,
Go to View and click Add-Ins,
In the Add-Ins window click Add...,
Then find the dll you have downloaded
FileGenerator.dll (witch came wth the FileGenerator plugin),
Then close the Add-Ins window.
Go to File and click Open and choose the dll that you want to decompile,
After you have opend it, it will appear in the tree view,
Go to Tools and click Generate Files(Crtl+Shift+G),
select the output directory and select appropriate settings as your wish, Click generate files.
OR
use http://ilspy.net/