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

hello C#

时间:2018-03-05 23:30:05      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:string   定义类   gpo   image   .com   post   bsp   height   info   

一:程序

1.新建项目

  技术分享图片

 

2.修改名称位置

  需要选择控制台应用程序。

  技术分享图片

 

3.项目新建后的效果

  技术分享图片

 

4.书写第一个程序

 1 //下面是引用命名空间
 2 using System;
 3 using System.Collections.Generic;
 4 using System.Linq;
 5 using System.Text;
 6 using System.Threading.Tasks;
 7 
 8 //下面是定义命名空间
 9 namespace HelloWorld
10 {
11     //定义类
12     class Program
13     {
14         //定义方法
15         static void Main(string[] args)
16         {
17             //方法体
18             Console.WriteLine("hello C#");
19         }
20     }
21 }

 

5.效果

  ctrl+F5

  技术分享图片

 

 

二:快捷键

1.Home

  使得光标调到最前方

 

2.End

  使得光标调到最后面

 

3.shift

  光标所在的位置开始按下shift,然后光标移动一个位置后再按下光标,

  就可以选中期间的所有内容

 

hello C#

标签:string   定义类   gpo   image   .com   post   bsp   height   info   

原文地址:https://www.cnblogs.com/juncaoit/p/8511659.html

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