Esempio n. 1
0
        void StepIntoToolStripMenuItemClick(object sender, EventArgs e)
        {
            StepIntoDebuggingCommand stepCommand = new StepIntoDebuggingCommand();

            stepCommand.Run();
        }
Esempio n. 2
0
        void StepInto()
        {
            var stepCommand = new StepIntoDebuggingCommand();

            stepCommand.Run();
        }