目前最新的版本是 C# 7.0,VS 的最新版本為 Visual Studio 2017 RC,兩者都尚未進入正式階段。C# 6.0 雖說出了一段時間,但是似乎有許多園友對這一塊知識並不了解,如拼接字符串的 $ 符號,在此,小人獻上拙作一篇《C# 6.0 的知識梳理》,祝大家在新的一年裡:年年有今日,歲歲有今朝,月月漲工資,周周中彩票,天天好心情,日日好運道,白天遇財神,夜晚數鈔票。
好了,廢話不多說,我們先來回顧一下 C# 的版本史。後續我會對帶 0 的版本號進行的簡寫:C# 6.0 -> C# 6。由於新的特性較多,筆者就每種特性只截取其中一部分作為示例,點到即止。下面的示例都我已經打包了哦:demo。
private void Func(string msg) { if (string.IsNullOrEmpty(msg)) { throw new ArgumentException(nameof(msg)); } }
簡單示例:
1 using System; 2 using SystemTest = System.Text; 3 4 namespace _01_nameof 5 { 6 class Program 7 { 8 private static void Func1(int x) { } 9 private string F<T>() => nameof(T); 10 private void Func2(string msg) { } 11 12 static void Main(string[] args) 13 { 14 var program = new Program(); 15 16 Console.WriteLine(nameof(SystemTest)); 17 Console.WriteLine(nameof(Func1)); 18 Console.WriteLine(nameof(Program)); 19 Console.WriteLine(nameof(program)); 20 Console.WriteLine(nameof(F)); 21 22 Console.Read(); 23 } 24 } 25 }
var name = "Fanguzai"; Console.WriteLine($"Hello, {name}");
【注意】想要在內插字符串中包含大括號(“{” 或 “}”),請使用兩個大括號,即 “{{” 或 “}}”。
值得思考的示例:
var s1 = $"hello, {name}"; IFormattable s2 = $"Hello, {name}"; FormattableString s3 = $"Hello, {name}";
用於在執行成員訪問 (?.
) 或索引 (?[
) 操作之前,測試是否存在 NULL 值。 這些運算符可讓你編寫更少的代碼來檢查 null 值。
1 string name = null; 2 Console.WriteLine($"1:{name?.Length}"); 3 4 name = "Fanguzai"; 5 Console.WriteLine($"2:{name?.Length}"); 6 Console.WriteLine($"3: {name?[0]}");
我們來看看另一種用途,可以使用非常少的代碼以線程安全的方式調用委托:
1 //普通的委托調用 2 Func<int> func = () => 0; 3 if (func!=null) 4 { 5 func(); 6 } 7 8 //簡化調用 9 func?.Invoke();
現在可以在 catch
和 finally
塊中使用 await 了
。 1 async Task Test()
2 {
3 var wc = new WebClient();
4 try
5 {
6 await wc.DownloadDataTaskAsync("");
7 }
8 catch (Exception)
9 {
10 await wc.DownloadDataTaskAsync(""); //OK
11 }
12 finally
13 {
14 await wc.DownloadDataTaskAsync(""); //OK
15 }
16 }
現在可以通過與初始化字段相似的方式來初始化自動屬性。當屬性訪問器中不需要任何其他邏輯時,自動實現的屬性會使屬性聲明更加簡潔。
class MyClass { public string Name { get; set; } = "Fanguzai"; } static void Main(string[] args) { var myClass=new MyClass(); Console.WriteLine(myClass.Name); Console.Read(); }
class MyClass { public string Name { get; set; } public MyClass() { Name = "Fanguzai"; } }
可以采用與用於 lambda 表達式相同的輕量語法,聲明具有代碼表達式主體的成員。具有立即僅返回表達式結果,或單個語句作為方法主題的方法定義很常見。 以下是使用 =>
定義此類方法的語法快捷方式:
class MyClass { public int this[int id] => id; //索引 public double Add(int x, int y) => x + y; //帶返回值方法 public void Output() => Console.WriteLine("Hi, Fanguzai!"); //無返回值方法 }
現在可以初始化支持索引編制的集合的特定元素(如初始化字典)。如果集合支持索引,可以指定索引元素。
var nums = new Dictionary<int, string> { [7] = "seven", [9] = "nine", [13] = "thirteen" }; //這是舊的方式 var otherNums = new Dictionary<int, string>() { {1, "one"}, {2, "two"}, {3, "three"} };
可以導入靜態類型的可訪問靜態成員,以便可以在不使用類型名限定訪問的情況下引用成員。
using System; using static System.Console; namespace _08_usingStatic類型 { class Program { static void Main(string[] args) { Console.WriteLine("Hi,Fanguzai!"); WriteLine("Hi,Fanguzai!"); // 使用了 using static System.Console; } } }
using static
僅導入可訪問的靜態成員和指定類型中聲明的嵌套類型,不會導入繼承的成員。
我提供了上面的代碼示例 demo 下載,直接下載即可。
【博主】反骨仔
【出處】http://www.cnblogs.com/liqingwen/p/6217475.html
【參考】微軟官方文檔