示例#1
0
		void StepInto()
		{
			var stepCommand = new StepIntoDebuggingCommand();
			stepCommand.Run();
		}
 void StepIntoToolStripMenuItemClick(object sender, EventArgs e)
 {
     StepIntoDebuggingCommand stepCommand = new StepIntoDebuggingCommand();
     stepCommand.Run();
 }