While debugging, how can I ensure the output without stepping into each line of code?
问题 In the following console application, if I place a breakpoint on the last line Go(); and execute till breakpoint (in debug mode) by pressing F5, the results are not quite different on each run. Console can be blank (does not output anything): or it can output just part of the results on another run: or, on very rare occasions, the results are "complete" ("actualized"): If I debug by F10 (Step Over) or F11 (Step into), the results of executing are output into console window immediately. Why