How to open .dll files to see what is written inside?

后端 未结 8 1942
囚心锁ツ
囚心锁ツ 2020-12-07 09:25

I lost the solution of class-library, can I open .dll file which is created by class-library.

相关标签:
8条回答
  • 2020-12-07 10:05

    Telerik's Just Decompile is the best I've used. It's free once you sign up with an email.

    enter link description here

    0 讨论(0)
  • 2020-12-07 10:07

    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/

    0 讨论(0)
  • 2020-12-07 10:11

    Follow below steps..

    1. Go to Start Menu.
    2. Type Visual Studio Tool.
    3. Go to the folder above.
    4. 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.
    5. After command prompt loaded to screen type ILDASM.EXE press ENTER.
    6. ILDASM window will open.Drag the .dll file to window from your folder.Or click on File->New.Then Add required .dll file.
    7. After above steps Mainfest and .dll file will appear. Double click on these files to see what it contains.
    0 讨论(0)
  • 2020-12-07 10:16

    I use the Jetbrains Dot peek Software , you can try that too

    0 讨论(0)
  • 2020-12-07 10:18

    Open .dll file with visual studio. Or resource editor.

    0 讨论(0)
  • 2020-12-07 10:21

    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.

    0 讨论(0)
提交回复
热议问题