Keeping console window open when debugging

后端 未结 3 1203
闹比i
闹比i 2020-12-06 19:12

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 de

3条回答
  •  無奈伤痛
    2020-12-06 19:43

    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.

提交回复
热议问题