コード例 #1
0
 private void exitToolStripMenuItem_Click(object sender, EventArgs e)
 {
     doNotBreak = true;
     ContineExecutionEvent.Set();
     this.Close();
     Environment.Exit(0);
 }
コード例 #2
0
        /// <summary>
        /// F5 Implementation
        /// </summary>
        private void runToolStripMenuItem_Click(object sender, EventArgs e)
        {
            doNotBreak = true;

            if (!debugSessionInProgress)
            {
                LaunchDebugger();
            }
            else
            {
                ContineExecutionEvent.Set();
            }
        }