Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging COM object in a foreign process [duplicate]

My Dll COM object (written in C#) is loaded by a 3rd party process (as a plugin). Is there any why to debug it other then logging?

UPDATE:

Just found this question, which is the exact scenario I was looking for.

like image 384
Elist Avatar asked Dec 21 '22 02:12

Elist


1 Answers

Attach your Visual Studio debugger to the other process when it is running. You may have to start Visual Studio as administrator (elevated rights) for this to succeed.

like image 90
FrankPl Avatar answered Dec 28 '22 07:12

FrankPl