美文网首页
002_中断模式下的调试。

002_中断模式下的调试。

作者: 立秋i | 来源:发表于2018-05-21 15:50 被阅读0次

namespace _002_中断模式下的调试 {

    class Program {

        static void Test()

        {

            Console.WriteLine("Test method");

        }

        static void Main(string[] args)

        {

            int num1 = 34;

            int num2 = 67;

            Test();

            int sum = num1 + num2;

            string name = "siki";

            Console.Write(sum);

            Console.WriteLine(name);

            Console.ReadKey();

        }

    }

}

相关文章

网友评论

      本文标题:002_中断模式下的调试。

      本文链接:https://www.haomeiwen.com/subject/rzofjftx.html