Пример #1
0
        void StepIntoToolStripMenuItemClick(object sender, EventArgs e)
        {
            StepIntoDebuggingCommand stepCommand = new StepIntoDebuggingCommand();

            stepCommand.Run();
        }
Пример #2
0
        void StepInto()
        {
            var stepCommand = new StepIntoDebuggingCommand();

            stepCommand.Run();
        }