예제 #1
0
        void StepOutToolStripMenuItemClick(object sender, EventArgs e)
        {
            StepOutDebuggingCommand stepCommand = new StepOutDebuggingCommand();

            stepCommand.Run();
        }
예제 #2
0
        void StepOut()
        {
            var stepCommand = new StepOutDebuggingCommand();

            stepCommand.Run();
        }