10000-12 helloworld-2 主函数内容编辑以及2行内容的输出

  

  程序的最基础结构。

  

   

using System;// 1 命名空间

namespace ConsoleTest1  
{
    class Program   
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");


            Console.WriteLine("主函数区域,可以编辑写内容,逻辑的地方。");



        }
    }
}

    

 输出:

   10000-12  helloworld-2 主函数内容编辑以及2行内容的输出

 

上一篇:SpringBoot 如何集成 redis


下一篇:UPDATE sql 优化