轉自:https://www.cnblogs.com/yinrq/p/5600530.html ...
C#6.0新特性
一、C#發展歷程
下圖是自己整理列出了C#每次重要更新的時間及增加的新特性,對於瞭解C#這些年的發展歷程,對C#的認識更加全面,是有幫助的。
一、C#6.0新特性
1、字元串插值 (String Interpolation)
字元串拼接優化
Before:
var Name = "joye.net"; var Results = "Hello" + Name;//直接拼接 var results1 = string.Format("Hello {0}", Name);//Format拼接
After:
var results2 = $"Hello {Name}"; //$拼接 var results= $"Hello {Name}{new Program().GetCnblogsSite()}";//{}可以直接插入代碼
2、null檢查運算符【 ?.】 (Monadic null checking)
null優化
Before:
public static string GetCnblogsSite() { return "http://www.cnblogs.com/yinrq"; }
Program pro = null; if(pro!=null) Console.WriteLine(GetCnblogsSite());
After:
Program pro = null; Console.WriteLine(pro?.GetCnblogsSite());
3、 自動屬性初始化器(Initializers for auto-properties)
可以直接給自動屬性賦值了,不需要寫在構造函數中。
Before:
public class ClassA { private string Name{get;set;}; public ClassA() { Name = "joye.net"; } }
After:
public class ClassA { public string Name { get; set; } ="joye.net"; }
4、只讀自動屬性(Getter-only auto-properties)
只讀自動屬性可以直接初始化,或者在構造函數中初始化。
before
//縮小自動屬性的訪問許可權 public class ClassA { public string Name { get; private set; } } //C#1.0實現 public class ClassA { private string Name = "joye.net"; public string Name { get { return Name; } } }
after:
public class ClassA { public string Name { get; } = "joye.net"; }
5、表達式方法體(Property Expressions && Method Expressions)
只讀屬性,只讀索引器和方法都可以使用Lambda表達式作為Body。
一句話的方法體可以直接寫成箭頭函數,而不再需要大括弧(分頁控制項http://www.cnblogs.com/yinrq/p/5586841.html就用到了屬性表達式Property Expressions)
public class PagerInBase { /// <summary> /// 當前頁 /// </summary> public int PageIndex { get; set; } /// <summary> /// 頁數 /// </summary> public int PageSize { get; set; }
//以前的寫法
//public int Skip{get{return (PageIndex - 1) * PageSize}}
//跳過序列中指定數量的元素 public int Skip => (PageIndex - 1) * PageSize; /// <summary> /// 請求URL /// </summary> public string RequetUrl => System.Web.HttpContext.Current.Request.Url.OriginalString; /// <summary> /// 構造函數給當前頁和頁數初始化 /// </summary> public PagerInBase() { if (PageIndex == 0) PageIndex = 1; if (PageSize == 0) PageSize = 10; } }
方法表達式(Method Expressions)
//before 的完整方法 public int Skip() { return (PageIndex - 1) * PageSize } //After C#6.0 方法表達式 public int Skip() => (PageIndex - 1) * PageSize;
6、using靜態類(Static type using statements)
using System; using static System.Math; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine(Log10(5) + PI); } } }
7、檢查方法參數nameof表達式(nameof expressions)
這個很有用,原來寫WPF中的ViewModel層的屬性變化通知時,需要寫字元串,或者使用MvvmLight等庫中的幫助方法,可以直接傳入屬性,但由於是在運行時解析,會有少許性能損失。現在使用nameof運算符,保證重構安全和可讀性,又提升了性能。
Before:
public static void Add(Person person) { if (person == null) { throw new ArgumentNullException("person"); } }
After:
public static void Add(Person person) { if (person == null) { throw new ArgumentNullException(nameof(person)); } }
8、帶索引的對象初始化器(Index initializers )
直接通過索引進行對象的初始化
var dic = new Dictionary<int, string> { [0]="joye.net",[1]= "http://yinrq.cnblogs.com/",[2]= "Index initializers " };
9、catch和finally 中使用await (catch和finally 中的 await )
在C#5.0中,await關鍵字是不能出現在catch和finnaly塊中的。而C#6.0可以
try { res = await Resource.OpenAsync(…); // You could do this } catch (ResourceException e) { await Resource.LogAsync(res, e); // Now you can do this } finally { if (res != null) await res.CloseAsync(); // finally and do this. }
10、內聯out參數(Inline declarations for out params)
before
int x; int.TryParse("123", out x);
after:
int.TryParse("123", out int x);
11、無參數的結構體構造函數(Parameterless constructors in structs)
public struct MyStruct { public int A { get; } public int B { get; } public MyStruct(int a, int b) { A = a; B = b; } public MyStruct(): this(0, 1) { } }
WriteLine(new MyStruct().ToString()); WriteLine(default(MyStruct).ToString());