Setting breakpoint in c# code with ADPlus

Posted by Petr Havlicek on Stack Overflow See other posts from Stack Overflow or by Petr Havlicek
Published on 2010-06-09T00:49:06Z Indexed on 2010/06/09 0:52 UTC
Read the original article Hit count: 222

Filed under:
|
|
|
|

Hello,

I am wondering if it is possible to set a breakpoint in C# code using ADPlus. I find several examples of config files but they always works with native code. Like this one:

<ADPlus>
    <Breakpoints>
     <NewBP>
       <!-- Set the breakpoint on ExitProcess. -->
       <Address>kernel32!ExitProcess</Address>
       <Type>BP</Type>
       <Actions>FullDump;Stacks;</Actions>
       <ReturnAction>G</ReturnAction>
     </NewBP>
   </Breakpoints>
</ADPlus>

Something like this would be useful:

<Address>MyCSharpClass.SomeMethod</Address>

© Stack Overflow or respective owner

Related posts about c#

Related posts about debugging