Exemple #1
0
 public StepperEventArgs(Stepper stepper, CorDebugStepReason reason)
     : base(stepper.Process)
 {
     this.stepper = stepper;
     this.reason  = reason;
 }
        /// <summary> Step out of the stack frame </summary>
        public void AsyncStepOut()
        {
            Stepper.StepOut(this, "normal");

            AsyncContinue();
        }