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