C#语法索引

本文将介绍大多数C#的关键字和语法,并且按照C#语言版本进行分类,便于C#使用者速查。
大部分资料来自于wikipedia,msdn及相关网站的链接。

C# 2.0

feature keyword/example remark
泛型(Generics) class Foo { T obj; } 包含泛型类型/方法/字段/委托/泛型约束
部分类型 partial class Foo{ }
匿名方法 delegate(object o) { return 0; }
迭代器 IEnumerable/IEnumerator/foreach/yield
可空类型 int? a = null; Nullable b = null;
属性访问权限 int Val { get {return _val;} private set { _val = value;}} 可以对getter/setter分别设置访问权限
方法组转换 void fun(){}; Action act = this.fun; 委托省略new的写法
委托协变逆变 delegate Base Action(Derived arg); Derived fun(Base arg){}; Action act = fun;
静态类 static class Utils {}
委托类型推导 Action act = delegate{}

C# 3.0

feature keyword/example remark
隐式类型变量 var i = 10;
对象初始器 var a = new Point { X = 0, Y = 1 };
集合初始器 var a = new List {1,2,3}; 识别Add方法
自动属性 int Val {get;set;}
匿名类型 var a = new { x = 0, y = 1 };
扩展方法 static void fun(this object o){}; getObj().fun(); 依赖ExtensionAttribute
LINQ查询 from/join/on/equals/into/let/orderby/ ascending/descending/select/group/by 编译为对应方法
Lambda表达式 Action act = ()=>fun();
表达式树 Expression act = ()=>fun();
部分方法 partial void fun();

除表达式树外绝大部分特性可兼容.net 2.0下使用。LINQ查询可通过linqbridge第三方实现兼容.net 2.0,扩展方法可以自行定义ExtensionAttribute来兼容.net 2.0。

C# 4.0

feature keyword/example remark
动态绑定 dynamic o = getObj(); o.fun();
命名和可选参数 void fun(int a1=0){}; fun(a1: 1);
泛型协变逆变
非默认索引器 仅COM支持
内嵌COM类型(NoPIA) 运行时脱离COM.interop文件

dynamic特性明确需要CLR4才能支持,之前的版本可以用反射替代。

C# 5.0

feature keyword/example remark
异步方法 async fun(){}; await fun();
调用者信息 CallerAttribute 用于调试的特性

await/async为编译器语法糖,可使用asyncBridge第三方库兼容到.net3.5。

C# 6.0

feature keyword/example remark
Roslyn编译器
导入命名空间 using static System.Math; Cos(1);
异常过滤器 try{} catch(Exception e) when(fun(e)){}
catch/finally中可使用await try{} catch{ await fun();}
自动属性初始化 int Val {get;set;} = 1;
只读属性默认值 int Val {get;} = 1; 可用于构造函数
表达式方法体成员 int Val => Math.Sign(1); 用于定义属性
空传递运算符 int i = array?.Length; 短路运算, 可用于获取成员和调用方法
字符串插补 var str = $"{a.x}, {a.y}";
nameof运算符 var str = nameof(this.Val);
索引器初始化 new Dict{ ["key"]=val };

大部分特性为编译器语法糖,可兼容到.net 2.0运行。其中属性初始化字符串插补特性编译至string.Format方法,属性初始化编译到构造函数,空传递运算符编译为if,nameof编译为常量,索引器初始化识别this索引。

C# 7.0

feature keyword/example remark
Out声明变量 int.TryParse(str, out var val);
模式匹配 is/switch/when
元组(Tuple) var a = (x:1, y:2); (int x,int y)=(1,2) 依赖System.ValueTuple
解构函数 class P { public void Deconstruction(out int x, out int y){} }; (int a, int b) = new P(); 支持扩展函数
弃元(discards) int.TryParse(str, out _); (_,_) = new P(); 也可用于tuple
局部函数 void fun(){ void fun2(){}; fun2();} 局部函数可递归
数值字面量分隔符 var x = 0b00_01;var pi=3.14_15_926;var i=1_2_3;
ref变量和返回值 ref int fun(){ return ref ary[0];}; ref int a = ref fun();
表达式方法体成员 int Val{get=>_val;set=>_val=value;} 可用于定义方法/属性getter/settter/构造函数/析构函数
广义异步返回类型 async ValueTask fun(){}; 识别GetAwaiter方法
Throw表达式 int Val => throw new Exception();

大部分基于Tuple的特性需要ValueTuple类型支持,需要.net 4.7或以上版本。早期的版本可以通过nuget获取package来支持。

C# 7.1

feature keyword/example remark
异步主函数 async Task Main(){}
default字面表达式 int a = default;
元组命名推断 int x=1,y=2; var a=(x,y);

C# 7.2

feature keyword/example remark
值类型引用语义 in/ref readonly/readonly struct/ref struct
非末尾命名参数 fun(x:1, 2, y:3); 命名参数和按顺序参数可以混用
数值字面量分隔符 int a = 0b_0_1; 下划线可以前导了
private protected class A { private protected int a;} 新增访问修饰符, 只允许当前类及相同assembly内子类访问

你可能感兴趣的:(C#语法索引)