Which program in Visual Studio lets me look into DLLs to see its API?

后端 未结 8 1182
鱼传尺愫
鱼传尺愫 2020-12-14 14:45

See the question. I want to see the methods and classes offered by a DLLs library.

相关标签:
8条回答
  • If you have limited options to download: In Visual Studio you could use Visual Studio Developer Command Prompt. Open it from windows menu -> All programs -> Visual Studio XX -> Visual Studio Tools -> Developer Command Prompt. Then: run command: ildasm

    Example ildasm:

    ildasm c:\MyNetAssembly.dll
    

    If you have access to download any program you could use better options:
    IlSpy
    dotPeek
    .net reflector
    JustDecompile

    0 讨论(0)
  • 2020-12-14 15:47

    For those coming from the old Visual Studio 6.0 days:

    Dependency Walker is a nice free tool, that was formerly part of Visual Studio.

    http://www.dependencywalker.com/

    I like it still. Here is a screen shot:

    enter image description here

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