protected override unsafe int OnBreakpoint(
     CorDebugAppDomain pAppDomain,
     CorDebugThread pThread,
     CorDebugBreakpoint pBreakpoint)
 {
     Breakpoint?.Invoke(this, pAppDomain, pThread, pBreakpoint);
     return(Continue());
 }
Esempio n. 2
0
File: VM.cs Progetto: sam159/SVM
 public void InvokeBreakpoint()
 {
     Breakpoint?.Invoke(this, new EventArgs());
 }