C# 6.0 11個新特性

来源:http://www.cnblogs.com/zhangdk/archive/2016/09/27/5914182.html
-Advertisement-
Play Games

1. 靜態using(static using) 靜態using聲明允許不使用類名直接調用靜態方法。 The static using declaration allows invoking static methods without the class name. In C 5 In C 6 2 ...


1. 靜態using(static using)

靜態using聲明允許不使用類名直接調用靜態方法。

The static using declaration allows invoking static methods without the class
name.

In C# 5

using System;

Console.WriteLine("Hello, World!");

In C# 6

using static System.Console;

WriteLine("Hello, World");

2. 表達式方法(Expression-Bodied Methods)

使用表達式方法,只有一條語句的方法可以使用lambda語法寫。

With expression-bodied methods, a method that includes just one statement can
be written with the lambda syntax.

In C# 5

public bool IsSquare(Rectangle rect)
{
    return rect.Height == rect.Width;
}

In C# 6

public bool IsSquare(Rectangle rect) => rect.Height == rect.Width;

3. 表達式屬性(Expression-Bodied Properties)

跟表達式方法類似,只有一個get訪問器的單行屬性可以使用lambda語法寫。

Similar to expression-bodied methods, one-line properties with only a get accessor
can be written with the lambda syntax

In C# 5

public string FullName
{
    get
    {
        return FirstName +"" + LastName;
    }
}

In C# 6

public string FullName => FirstName +"" + LastName;

4. 自動屬性初始化器(Auto-Implemented Property Intializers)

自動屬性可以使用屬性初始化器初始化。

Auto-implemented properties can be initialized with a property initializer.

In C# 5

public class Person
{
    public Person()
    {
        Age = 24;
    }
    public int Age {get; set;}
}

In C# 6

public class Person
{
    public int Age {get; set;} = 42;
}

5. 只讀自動屬性(Read-Only Auto Properties)

C# 5需要完整的屬性語法實現只讀屬性,C# 6可以使用自動屬性實現。

To implement read-only properties, C# 5 requires the full property syntax. With
C# 6, you can do this using auto-implemented properties.

In C# 5

private readonly int _bookId;
public BookId
{
    get
    {
        return _bookId;
    }
}

In C# 6

public BookId {get;}

6. nameof操作符(nameof Operator)

欄位、屬性、方法和類型的name可以通過nameof訪問。使用nameof,可以方便的重構name變化。

With the new nameof operator, names of fields, properties, methods, or types can
be accessed. With this, name changes are not missed with refactoring.

In C# 5

public void Method(object o)
{
    if (o == null) throw new ArgumentNullException("o");

In C# 6

public void Method(object o)
{
    if (o == null) throw new ArgumentNullException(nameof(o));

7. Null傳遞操作符(Null Propagation Operator)

Null傳遞操作符簡化了空值檢查。

The null propagation operator simplifies null checks.

In C# 5

int? age = p == null ? null : p.Age;
var handler = Event;
if (handler != null)
{
    handler(source, e);
}

In C# 6

int? age = p?.Age;
handler?.Invoke(source, e);

8. 字元串插值(String Interpolation)

字元串差值移除了對string.Format的調用,使用表達式占位符取代數字格式占位符。

The string interpolation removes calls to string.Format. Instead of using
numbered format placeholders in the string, the placeholders can include
expressions.

In C# 5

public override ToString()
{
    return string.Format("{0}, {1}", Title, Publisher);
}

In C# 6

public override ToString() => $"{Title} {Publisher}";

9. 字典初始化器(Dictionary Initializers)

字典可以使用類似集合的字典初始化器初始化。

Dictionaries can now be initialized with a dictionary initializer—similar to the
collection initializer.

In C# 5

var dict = new Dictionary<int, string>();
dict.Add(3,"three");
dict.Add(7,"seven");

In C# 6

var dict = new Dictionary<int, string>()
{
    [3] ="three",
    [7] ="seven"
};

10. 異常過濾器(Exception Filters)

異常過濾器允許你在捕獲異常前進行過濾。

Exception filters allow you to filter exceptions before catching them.

In C# 5

try
{
    //etc.
} catch (MyException ex)
{
    if (ex.ErrorCode != 405) throw;
    // etc.
}

In C# 6

try
{
    //etc.
} catch (MyException ex) when (ex.ErrorCode == 405)
{
    // etc.
}

11. 在Catch使用Await(Await in Catch)

await可以在catch塊中直接使用,C# 5中需要變通使用。

await can now be used in the catch clause. C# 5 required a workaround.

In C# 5

bool hasError = false;
string errorMessage = null;
try
{
    //etc.
} catch (MyException ex)
{
    hasError = true;
    errorMessage = ex.Message;
} 
if (hasError)
{
    await new MessageDialog().ShowAsync(errorMessage);
}

In C# 6

try
{
    //etc.
} catch (MyException ex)
{
    await new MessageDialog().ShowAsync(ex.Message);
}

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Aspose.Cells導出excel,處理Datatable,下載地址編碼(中文),虛擬路徑&物理路徑 ...
  • ColorConsole htmlagilitypack.1.4.9.5 經測試效率比 CsQueryLaster 高 csvhelper Extend Devlib系列一套 itextsharp litedb log4net microsoft.bcl一套,.net4 await 用 MySql. ...
  • ADO.NET:數據訪問技術 就是將C#和MSSQL連接起來的一個紐帶 可以通過ADO.NET將記憶體中的臨時數據寫入到資料庫中也可以將資料庫中的數據提取到記憶體中供程式調用 所有數據訪問技術的基礎 連接資料庫基本格式:需要兩個類1、資料庫連接類 SqlConnection2、資料庫操作類 SqlCom ...
  • 添加引用InTheHand.Net.Personal.dll 首先創建一個藍牙類 然後就是搜索設備 藍牙的配對 客戶端 伺服器端 基本上就是這些吧! ...
  • 只是想簡單說下特性 - Attribute 【博主】反骨仔 【原文地址】http://www.cnblogs.com/liqingwen/p/5911289.html 目錄 特性簡介 使用特性 特性的參數 特性的目標 特性的常見用途 創建自定義的特性 使用反射訪問特性 特性簡介 使用特性 特性的參數 ...
  • 前段時間在改Bug打開一個project時,發生了一件奇怪的事,好好的一直不能載入solution底下的這個project,錯誤如下圖所示:大致的意思就是這個project的web server被配置成了IIS Express,但是當前URL被配置成local IIS web server。要想打開 ...
  • 背水一戰 Windows 10 之 控制項(彈出類): MessageDialog, ContentDialog ...
  • 本文首發我的微信公眾號"dotnet跨平臺", 內容得到大家熱烈的歡迎,全文重新發佈在博客,歡迎轉載,請註明出處. .NET 主要的開發語言是 C# , .NET 平臺泛指遵循ECMA 334 C#和 ECMA 335 CLI 標準的開發平臺 ,包括微軟自行開發的.NET 平臺和 開源實現的Mono... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...