C# 6.0 Feature list
| Feature | Example | C# | VB |
|---|---|---|---|
| Auto-property initializers | public int X { get; set; } = x; | Added | Exists |
| Getter-only auto-properties | public int Y { get; } = y; | Added | Added |
| Ctor assignment to getter-only autoprops | Y = 15 | Added | Added |
| Parameterless struct ctors | Structure S : Sub New() : End Sub : End Structure | Added | Added |
| Using static members | using System.Console; … Write(4); | Added | Exists |
| Dictionary initializer | new JObject { ["x"] = 3, ["y"] = 7 } | Added | No |
| Await in catch/finally | try … catch { await … } finally { await … } | Added | No |
| Exception filters | catch(E e) if (e.Count > 5) { … } | Added | Exists |
| Partial modules | Partial Module M1 | N/A | Added |
| Partial interfaces | Partial Interface I1 | Exists | Added |
| Multiline string literals | "Hello<newline>World" | Exists | Added |
| Year-first date literals | Dim d = #2014-04-03# | N/A | Added |
| Line continuation comments | Dim addrs = From c in Customers ' comment | N/A | Added |
| TypeOf IsNot | If TypeOf x IsNot Customer Then … | N/A | Added |
| Expression-bodied members | public double Dist => Sqrt(X * X + Y * Y); | Added | No |
| Null propagation | customer?.Orders?[5]?.$price | Added | Added |
| String interpolation | $"{p.First} {p.Last} is {p.Age} years old." | Added* | Planned |
| nameof operator | string s = nameof(Console.Write); | Added* | Planned |
| #pragma | #Disable Warning BC40008 | Added | Added |
| Smart name resolution | N/A | Added | |
| ReadWrite props can implement ReadOnly | Exists | Added | |
| #region inside methods | Exists | Added | |
| Overloads inferred from Overrides | N/A | Added | |
| CObj in attributes | Exists | Added | |
| CRef and parameter name | Exists | Added | |
| Extension Add in collection initializers | Added | Exists | |
| Improved overload resolution | Added | N/A |
C# 6.0 Feature list的更多相关文章
- redis3.0配置文件详解
redis.conf #redis.conf # Redis configuration file example. # ./redis-server /path/to/redis.conf #### ...
- Git学习笔记(6)——Bug和Feature分支
本文主要记录了通过Git来调试Bug和添加新的功能,也就是Bug分支和Feature分支,以及分支的推送. Bug分支 通过Git,我们可以为每个Bug建立一个分支,Bug修复后,合并分支,然后将临时 ...
- redis3.0.7集群部署手册
1.用root登录主机2.将redis-3.0.7.tar.gz传送到主机3.将rubygems-update-2.5.2.gem,redis-3.0.0.gem传送到主机4.解压redis-3.0. ...
- Install OpenCV 3.0 and Python 2.7+ on OSX
http://www.pyimagesearch.com/2015/06/15/install-OpenCV-3-0-and-Python-2-7-on-osx/ As I mentioned las ...
- redis-4.0.8 配置文件解读
# Redis configuration file example.## Note that in order to read the configuration file, Redis must ...
- 009-docker-安装-redis:5.0.3
1.搜索镜像 docker search redis 2.拉取合适镜像 docker pull redis:5.0.3 docker images 3.使用镜像 docker run -p 6379: ...
- 关于微博开放平台Oauth2.0接入网站应用
关于什么是微博开放平台及微博开放平台能做什么,咱就不做搜索引擎的搬运工了 这里直接给个链接介绍:微博开放平台 本文只是抛砖引玉,讲讲微博开放平台的基本用法,适合没接触过开放平台的朋友入门学习,老鸟就略 ...
- redis5.0主从配置
1.下载 wget http://download.redis.io/releases/redis-5.0.3.tar.gz .tar.gz cd redis- make make test //检查 ...
- MyEclipse WebSphere开发教程:安装和更新WebSphere 6.1, JAX-WS, EJB 3.0(一)
你开学,我放价!MyEclipse线上狂欢继续!火热开启中>> [MyEclipse最新版下载] MyEclipse支持Java EE技术(如JAX-WS和EJB 3.0),它们以功能包的 ...
随机推荐
- asp.net XMLHttpRequest 进度条以及lengthComputable always false的解决办法
一直用ajax好长时间了,对其原理也有一些了解,最近由于项目需要,使用ajax异步进度条的效果,就研究了一下,用原生的XMLHttpRequest实现进度条函数,XMLHttpRequest有以下函数 ...
- windows registry => control pannel
User Variables HKEY_CURRENT_USER\Environment System Variables HKEY_LOCAL_MACHINE\SYSTEM\CurrentContr ...
- JSON对象长度和遍历方法
摘自博客 (http://caibaojian.com/json-length.html) 原文链接:http://caibaojian.com/json-length.html JSON数组有长度j ...
- Spring配置文件详解
转自: http://book.51cto.com/art/201004/193743.htm 此处详细的为我们讲解了spring2.5的实现原理,感觉非常有用 spring配置文件是用于指导Sp ...
- 浅析call和apply
call, apply都属于Function.prototype的一个方法,它是JavaScript引擎内在实现的,因为属于Function.prototype,所以每个Function对象实例,也就 ...
- zigbee学习之路(十一):看门狗
一.前言 今天,我们要通过实验学习和认识一下看门狗的使用,看门狗是为了防止防止程序跑飞的,通过不断的喂狗,使看门狗能持续监管程序的运行状态,当程序跑飞时,能及时把程序拽回来. 二.原理与分析 在CPU ...
- UUID工具
package com.tech.jin.util; import java.util.UUID; public class UuidUtil { public static String get32 ...
- Javascript > Eclipse > 自动代码规范化
Reference: http://blog.csdn.net/jmyue/article/details/11060003 大项目往往是有很多人一起完成的,然而每个人都有自己的style,导致整个项 ...
- 使用MegaCli工具查看Raid磁盘阵列状态
转载自:http://home.51.com/chenjianghui1987/diary/item/10051836.html 文章本身我不做过多修改了,在这里我就把自己在安装时候碰到的难点跟大家提 ...
- 关于freemaker的一点使用技巧
在做国泰君安2016年中秋送电影票活动中,需要做这样一个手机页面,展示所有中奖用户的中奖信息.如下图: 要求对用户的后记号码中间5位做隐藏处理.最开始的处理方法是在对用户实体的get()方法做处理 / ...