1、写代码切忌括号错误!?
2、代码中所有的标点都是英文半角的标点
3、c#代码中每行代码以分号结束.
1、注销
2、解释
1、单行注释//
2、多行注释/* 注释内容*/
3、文档注释 ///多用来解释类或者方法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
internal class Program
{
/// <summary>
/// 这个方法的作用是求两个整数之间的最大值
/// </summary>
/// <param name="n1">第一个整数</param>
/// <param name="n2">第二个整数</param>
/// <returns>返回比较大的那个数字</returns>
// private static void Main(string[] args)
public static int GetMian(int n1,int n2)
{
return n1>n2?n1: n2;
}
}
/// <summary>
/// 这个类用来描述一个人的信息,从姓名 性别 年龄描述
/// </summary>
public class Person
{
public string Name
{ get;
set;
}
public int Age
{
get;
set;
}
public char Gender
{
get;
set;
}
}
CtrI+K+D:快速对齐代码(Ctrl+k快速弹起来ctrl键不放按住d)
Ctrl+Z:撤销
Ctrl+S:保存(一定要经常保存! )
Ctrl+J:快速弹出智能提示
Shift+End、Shift+Home,选中本行代码
End、Home光标调整至本行行尾行首
CtrI+K+C:注释所选代码
CtrI+K+U:取消对所选代码的注释
F1:转到帮助文档
#region开头??#endregion??折叠冗余代码
1)对于命名空间的引入
2)可释放资源的使用
.NET中的using ?类似于c当中的#include<?>(仅限参考)