Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keeping console window open when debugging

When I start a program without debugging (Ctrl+F5), I have to press a key to close the console window when the program is finished. When I start the program with debugging (F5), the console window closes immediately. Is there an option in Visual Studio that will keep the window open when debugging?

(I know of a thousand ways to do it "manually" in code, but I don't want to touch the code.)

like image 860
fredoverflow Avatar asked Feb 21 '11 12:02

fredoverflow


2 Answers

Add a break point to the ending bracket of the main() method. That way if the program finishes (unless it crashes in the process - which will trigger a break anyway) it will break no matter which return statement in the main was used.

like image 194
Matěj Zábský Avatar answered Oct 02 '22 00:10

Matěj Zábský


I don't think so, but you could do it manually

  • add break point in the end of main method
  • add the read function at the end of the main function so it will stay open to read the input and closed if you hit any key
like image 43
AshOoO Avatar answered Oct 02 '22 00:10

AshOoO