void StepOutToolStripMenuItemClick(object sender, EventArgs e) { StepOutDebuggingCommand stepCommand = new StepOutDebuggingCommand(); stepCommand.Run(); }
void StepOut() { var stepCommand = new StepOutDebuggingCommand(); stepCommand.Run(); }