码迷,mamicode.com
首页 > Windows程序 > 详细

C#入门 Hello World

时间:2020-02-14 10:50:24      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:直接   http   EAP   linq   ace   入口   name   code   ctrl   

 1 //导入微软提供的命名空间,以便使用
 2 using System;
 3 using System.Collections.Generic;
 4 using System.Linq;
 5 using System.Text;
 6 using System.Threading.Tasks;
 7 
 8 namespace ConsoleApp2//命名空间
 9 {
10     class Program//
11     {
12         static void Main(string[] args)//Main方法 程序入口
13         {
14             Console.Write("Hello World!"); //命令 以分号结束
15             //Ctrl + F5直接运行
16             //F5调试
17         }
18     }
19 }

 技术图片

C#入门 Hello World

标签:直接   http   EAP   linq   ace   入口   name   code   ctrl   

原文地址:https://www.cnblogs.com/xcfxcf/p/12306435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!