C# Lesson 1 :创建C#工程

一、新建项目

C# Lesson 1 :创建C#工程_第1张图片

sln:解决方案

csproj:C shap peoject

cs:class

解决方案包含项目,项目包含类。

方法又称作函数

二、程序构成

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//using xxxx  命名空间

namespace lesson01  //项目名称
{
    class Program   //类
    {
        static void Main(string[] args)     //main函数又叫main方法,程序的主入口,起始于main,结束于main
        {
        }
    }
}

三、项目

3.1 设置启动项

方法一:解决方案属性中更改

C# Lesson 1 :创建C#工程_第2张图片

方法二:项目右键

C# Lesson 1 :创建C#工程_第3张图片

3.2 项目的删除和卸载

C# Lesson 1 :创建C#工程_第4张图片

四、C#的注释

4.1 行注释 (//双斜线)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//using xxxx  命名空间
//使用using语句导入命名空间时需要将其放在程序的开头。

4.2 多行注释(/*    */)

/*
 * 第一个程序
 * 注释下
 */

namespace lesson01  //项目名称
{
    class Program   //类
    {
        static void Main(string[] args)     //main函数又叫main方法,程序的主入口,起始于main,结束于main
        {
            Console.WriteLine("第一个C#程序");
            Console.ReadKey();
        }
    }
}

4.3 文档注释(///)

namespace lesson01  //项目名称
{
    class Program   //类
    {
        /// 
        /// 随便注释下
        /// 
        /// 
        static void Main(string[] args)     //main函数又叫main方法,程序的主入口,起始于main,结束于main
        {
            Console.WriteLine("第一个C#程序");
            Console.ReadKey();
        }
    }
}

专门用来解释类或者方法

五、VS的快捷键

5.1 快速对齐

CTRL+K,只释放K,快速按下D

5.2 快速智能提示

Ctrl+J

5.3 行操作

ctrl+home :行起始

ctrl+end :行尾巴

shift+home :光标位于行尾后按快捷键,选择整行

5.4 注释取消

C# Lesson 1 :创建C#工程_第5张图片

5.5 代码折叠

# region

#endregion

namespace lesson01  //项目名称
{
    class Program   //类
    {
        /// 
        /// 随便注释下
        /// 
        /// 
        static void Main(string[] args)     //main函数又叫main方法,程序的主入口,起始于main,结束于main
        {
 
            Console.WriteLine("第一个C#程序");
            Console.WriteLine("第一个C#程序");
            #region
            Console.WriteLine("第一个C#程序");
            Console.WriteLine("第一个C#程序");
            #endregion
            Console.ReadKey();

        }
    }
}

C# Lesson 1 :创建C#工程_第6张图片

C# Lesson 1 :创建C#工程_第7张图片

5.6 其它

保存:ctrl + S

撤销:ctrl + Z

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(编程,c#)