private void exitToolStripMenuItem_Click(object sender, EventArgs e) { doNotBreak = true; ContineExecutionEvent.Set(); this.Close(); Environment.Exit(0); }
/// <summary> /// F5 Implementation /// </summary> private void runToolStripMenuItem_Click(object sender, EventArgs e) { doNotBreak = true; if (!debugSessionInProgress) { LaunchDebugger(); } else { ContineExecutionEvent.Set(); } }