C#语言入门01

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace ConsoleApp1
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13 
14             Console.WriteLine(" hello  world!!");
15             Console.WriteLine("天下第一家");
16             Console.ReadKey();
17         }
18     }
19 }
hello world
原文地址:https://www.cnblogs.com/Mengchangxin/p/9907351.html