01day hello world

我的第一个项目hello,world! 控制台程序

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace _01day
 8 {
 9     class Program
10     {
11         /// <summary>
12         /// 方法注释的用法三个/// 普通注释//或者 /*-----*/
13         /// </summary>
14         /// <param name="args">参数</param>
15         static void Main(string[] args)
16         {
17             #region 我的第一个项目
18             //我的第一个项目
19             Console.WriteLine("Hello World!");
20             Console.WriteLine("20190306");
21             #endregion
22             Console.ReadKey();
23         }
24     }
25 }

 

posted @ 2019-03-10 21:50  txb212  阅读(173)  评论(0编辑  收藏  举报