简体   繁体   中英

Why does this close immediately in Visual Studio c# console application?

{
   class Program
   {
      static void Main(string[] args)
      {

          Console.WriteLine("press enter to contiune");

          //math tutorial 
          Console.WriteLine("5 + 3 = " + (5 + 3));
          Console.WriteLine("5 - 3 = " + (5 - 3));
          Console.WriteLine("5 * 3 = " + (5 * 3));
          Console.WriteLine("5 / 3 = " + (5 / 3));

          Console.ReadLine();
          // casting
          //boolian
          double Pi = 31.4;
          int intPi = (int)Pi;

          //Math Functions
          // Acos Asin Atan Atan2 Cos Cosh Exp Log Sin Sinh Tan Tanh

          double num1 = 10.5;
          double num2 = 15;
          Console.WriteLine("Math.Max(num1, num2)" + Math.Max(num1, num2));
          Console.WriteLine("Math.Min(num1, num2)" + Math.Max(num1, num2));
          // other options: Abs Ceiling Floor Pow Round Sqrt

          Console.ReadLine();
      }
   }
}

//with the f5 debug is just says press enter etc. //really unsure cant find a solution to it

You can attempt this,

In Visual Studio: choose Debug menu, select Options and Settings , inside Debugging / General node, clear Enable Just My Code .

Later, compile your solution in Release mode and execute it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM