1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Windows.Forms;
7
8 namespace helloworld
9 {
10 class HelloWorld
11 {
12 public static void Main()
13 {
14 Console.WriteLine("This is My First C# Program Hello World!");
15 MessageBox.Show("Hello World!");
16 Console.ReadLine();
17 }
18 }
19

C#第一个helloworld程序_html

 

 

C#第一个helloworld程序_html_02

 

作者:​​靠谱杨​​​, ​


更多日常分享尽在我的VX公众号:小杨的挨踢IT生活

C#第一个helloworld程序_html_03