Debugging a third-party DLL in Visual Studio?

后端 未结 8 1729
猫巷女王i
猫巷女王i 2020-12-06 05:03

I am using a third-party DLL. For some particular cases, a function in the DLL is throwing an exception. Is it possible to debug the DLL in the Visual Studio?

After

8条回答
  •  醉酒成梦
    2020-12-06 05:32

    If the DLL is in a .NET language, you can decompile it using a tool like .NET Reflector and then debug against the source code.

    Or you could ask the vendor if source code is available. That's probably the easiest way.

提交回复
热议问题