Esempio n. 1
0
        void StopToolStripMenuItemClick(object sender, EventArgs e)
        {
            StopDebuggingCommand stopCommand = new StopDebuggingCommand();

            stopCommand.Run();
        }
Esempio n. 2
0
        void StopDebugging()
        {
            var stopCommand = new StopDebuggingCommand();

            stopCommand.Run();
        }