/// <summary> /// Enable Just-my-code stepping for this stepper. The default is 'false. /// </summary> /// <param name="isJustMyCode">true to make this a JMC-stepper, false to make it a traditional stepper.</param> public void SetJmcStatus(bool isJustMyCode) { ICorDebugStepper2 stepper2 = m_step as ICorDebugStepper2; if (stepper2 != null) { stepper2.SetJMC(isJustMyCode ? 1 : 0); } }
public void SetJMC(bool enable) { ICorDebugStepper2 stepper2 = m_step as ICorDebugStepper2; if (stepper2 != null) { stepper2.SetJMC(enable ? 1 : 0); } }