[Tip: VS debugging]F5 VS Ctrl +F5

On the Debug menu, there are two options to run a program, Start Debugging (F5) and Start Without Debugging (Ctrl+F5). The differences between these two options are that
Start Debugging stops on breakpoints during execution and the console window will close when the Main method completes. However, the Start Without Debugging option will not
stop on breakpoints and will stop and leave the console window open when the Main method completes.
原文地址:https://www.cnblogs.com/taoxu0903/p/1670535.html