C#2.0
泛型
部分类型
匿名方法
迭代器
可空类型
Getter / setter单独可访问性
方法组转换(代表)
Co- and Contra-variance for delegates
静态类
Delegate inference
C#3.0
隐式类型局部变量
对象和收集初始化器
自动实现的属性
匿名类型
扩展方法
查询表达式
Lambda表达式
表达树
部分方法
C#4.0
动态绑定
命名和可选参数
Generic co- and contravariance
嵌入式互操作类型(“NoPIA”)
C#5.0
异步方法
Caller info attributes
C#6.0
Compiler-as-a-service(Roslyn)
将静态类型成员导入命名空间
异常过滤器
在Catch和Finally中使用Await
自动属性初始化器
只读属性的默认值
Expression-bodied members
Null-conditional operators(空条件运算符,简洁检查)
字符串插值
nameof operator
字典初始化器
C#7.0
out变量
模式匹配
元组
解构
局部函数
数字分隔符
二进制文字
局部引用和引用返回
扩展异步返回类型
表达式的构造函数和finalizers
Expression bodied getters and setters
throw表达式
c#7.0新特性详解
C#7.0增加许多新功能,重点是数据,代码简化和性能上。
Out variables
目前在C#中,使用out参数不像我们想要的那么流畅。在使用out参数调用一个方法之前,首先必须声明变量来传递给它。您也不能使用var
它们来声明它们,但需要指定完整的类型。
在c#7中
模式匹配
以前版本需要转化
在c#7中
Switch statements with patterns 扩展switch语句使用模式匹配
元组(Tuples)
元组依赖于一组基础类型,不包括在预览4中。要使功能正常工作,您可以通过NuGet轻松获取它们:
右键单击解决方案资源管理器中的项目,然后选择“管理NuGet软件包...”
选择“浏览”选项卡,选中“包含预发行”,然后选择“nuget.org”作为“包源”
搜索“System.ValueTuple”并安装它。
部函数
简单的说,就是在方法里面写方法然后自己调用。
Literal improvements
C#7.0允许在数字文字中_
作为数字分隔符出现:
你可以把它们放在数字之间,以提高可读性。它们对价值没有影响。另外,C#7.0引入了二进制文字,因此您可以直接指定位模式,而不必以心脏知道十六进制符号。
更多c#7.0的特性
请参考文档:https://blogs.msdn.microsoft.com/dotnet/2016/08/24/whats-new-in-csharp-7-0/
c#6.0新语言功能详解
以下新功能在VS 2015及17中实现并可用
字符串格式化
上面的代码中都有体现。
字典索引初始化
自动属性初始化
using引用静态类
If you have a static class, whose members you are using a lot you can now avoid typing the class name everytime by including the class in the using declaration.
Exception Filters
Exception filters allow you to add additional conditions to exception handlers. We can now write an if a when statement next to a catch block & the catch block will only get executed if the condition returns true. Below is an impractical & silly example to play around with.
Using await in catch and finally blocks
We can now await functions in catch and finally blocks. This was not allowed prior to C# 6.0
The nameof Operator
There are times when we need the name of a variable in string form. nameof operator does just that. It takes a variable and converts the variable name to string.
Null Conditional Operator
c#2.0-5.0参考文档
c#5.0参考文档
c#4.0参考文档
连接地址:https://msdn.microsoft.com/en-us/magazine/ff796223.aspx
c#3.0参考文档
连接地址:https://msdn.microsoft.com/en-us/library/bb308966.aspx
c#2.0参考文档
连接地址:https://msdn.microsoft.com/en-us/library/7cz8t42e(v=vs.80).aspx