Exemplo n.º 1
0
        void StepOutToolStripMenuItemClick(object sender, EventArgs e)
        {
            StepOutDebuggingCommand stepCommand = new StepOutDebuggingCommand();

            stepCommand.Run();
        }
Exemplo n.º 2
0
        void StepOut()
        {
            var stepCommand = new StepOutDebuggingCommand();

            stepCommand.Run();
        }