private void _debuggee_ProcessExited(object sender, ExitProcessEventArgs e) { HandleIfBroken(DebugTrigger.ExitProcess, e); e.Status = DebugStatus.Go; }
static DebugStatus HandleExitProcess(object sender, ExitProcessEventArgs e) { Console.WriteLine("Process exited"); return(DebugStatus.Go); }
private void _debuggee_PreProcessExited(object sender, ExitProcessEventArgs e) { BreakIfHandled(DebugTrigger.ExitProcess, e); }