Why is the console window closing immediately once displayed my output?

前端 未结 21 2530
死守一世寂寞
死守一世寂寞 2020-11-22 03:45

I\'m studying C# by following the guides in MSDN.

Now, I just tried the Example 1 (here is the link to MSDN), and I\'ve encountered an i

21条回答
  •  不知归路
    2020-11-22 04:12

    This behaves the same for CtrlF5 or F5. Place immediately before end of Main method.

    using System.Diagnostics;
    
    private static void Main(string[] args) {
    
      DoWork();
    
      if (Debugger.IsAttached) {
        Console.WriteLine("Press any key to continue . . .");
        Console.ReadLine();
      }
    }
    

提交回复
热议问题