C#6.0新語法示例詳解

前言

一直用C#開發程序,.NET的功能越來越多,變化也挺大的,從最初的封閉,到現在的開源,功能不斷的增加,一直在進步。下面就來給大傢詳細介紹下C#6.0新語法的相關內容,一起來看看吧

眾所周知,c# 6.0 是在visual studio 2015中引入的。在其他的幾個版本中同樣引入一些特性,比如在c# 3.0中引入瞭linq,在c# 4.0中引入瞭動態類型dynamic,在c#5.0中引入async和await等等。

在c# 6.0更多關註瞭語法的改進,而不是增加新的功能。這些新的語法將有助於我們更好更方便的編寫代碼。

1、自動隻讀屬性

之前屬性為如下所示,屬性賦值需在構造函數對其初始化

1 public int Id { get; set; }
2 public string Name { get; set; }

 更新後

public string Name { get; set; } = "summit";
public int Age { get; set; } = 22;
public DateTime BirthDay { get; set; } = DateTime.Now.AddYears(-20);
public IList<int> AgeList
{
  get;
  set;
} = new List<int> { 10, 20, 30, 40, 50 };

2、直接引用靜態類

如果之前調用靜態類中的方法,如下書寫:

Math.Abs(20d);

更新後:

using static System.Math;
 
private void Form1_Load(object sender, EventArgs e)
  {
   Abs(20d);
  }

3、Null 條件運算符

之前在使用對象時,需要先進性判斷是否為null

if (student!=null)
{
 string fullName = student.FullName;
}
else
{
 //……
}

更新後:

string fullName = student?.FullName; //如果student為空則返回Null,不為空則返回.FullNaem,註意!得到的結果一定是要支持null

4、字符串內插

string str = $"{firstName}和{lastName}"

5、異常篩選器

try
{
 
}
catch(Exception e) when(e.Message.Contains("異常過濾,把符合條件的異常捕獲")
{
}

6、nameof 表達式可生成變量、類型或成員的名稱作為字符串常量

Console.WriteLine(nameof(System.Collections.Generic)); // output: Generic
Console.WriteLine(nameof(List<int>)); // output: List

7、使用索引器初始化對字典進行賦值

Dictionary<int, string> messages = new Dictionary<int, string>
    {
     { 404, "Page not Found"},
     { 302, "Page moved, but left a forwarding address."},
     { 500, "The web server can't come out to play today."}
    };

同時也可以這樣通過索引的方式進行賦值

Dictionary<int, string> webErrors = new Dictionary<int, string>
    {
     [404] = "Page not Found",
     [302] = "Page moved, but left a forwarding address.",
     [500] = "The web server can't come out to play today."
    };

8、在屬性/方法裡面使用Lambda表達式

public string NameFormat => string.Format("姓名: {0}", "summit");
public void Print() => Console.WriteLine(Name);

總結

到此這篇關於C#6.0新語法的文章就介紹到這瞭,更多相關C#6.0新語法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: