I lost the solution of class-library, can I open .dll
file which is created by class-library
.
Telerik's Just Decompile is the best I've used. It's free once you sign up with an email.
enter link description here
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..
ILDASM.EXE
press ENTER. ILDASM
window will open.Drag the .dll
file to window from your folder.Or click on File->New
.Then Add required .dll
file. .dll
file will appear. Double click on these files to see what it contains. I use the Jetbrains Dot peek Software , you can try that too
Open .dll
file with visual studio. Or resource editor.
You cannot get the exact code, but you can get a decompiled version of it.
The most popular (and best) tool is Reflector, but there are also other .Net decompilers (such as Dis#).
You can also decompile the IL using ILDASM, which comes bundled with the .Net Framework SDK Tools.