Beispiel #1
0
 private void OnStepComplete(object sender, CorStepCompleteEventArgs e)
 {
     try
     {
         Paused(e.Thread);
     }
     catch (NoDebugInfo i)
     {
         subscriber.Published("There is no debug info for this point. Stepping out of debug lock to continue...");
         stepper = Stepper(e.Thread);
         stepper.StepOut();
     }
 }