Setting breakpoint in c# code with ADPlus
- by Petr Havlicek
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>