Debugging a third-party DLL in Visual Studio?

后端 未结 8 1707
猫巷女王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:24

    I thought .NET Reflector got some debugging plugins. That'd be a so much better idea because decompiling and recompiling code generally fails, and you need to do so many changes in the code to fix it.

    Give .NET Reflector debugger a try. It might help you a lot.

提交回复
热议问题