摘要: async main方法 static int Main()//以前 { return DoAsyncWork().GetAwaiter().GetResult(); } static async Task<int> Main() //现在 有返回值 { // This could also be 阅读全文
posted @ 2019-03-14 15:23 maanshancss 阅读(693) 评论(0) 推荐(1) 编辑
摘要: 只读自动属性 //原来的写法 private int age=100; public int Age { get { return age; } } //现在的写法 public class Person { public int Age { get; } = 100; } 自动属性初始化器 //以前的写法 public class Person { public i... 阅读全文
posted @ 2019-03-14 14:46 maanshancss 阅读(276) 评论(0) 推荐(1) 编辑
摘要: out 变量 (以前必须在外面定义一行才可以使用) if (int.TryParse(input, out int result)) Console.WriteLine(result); 元组 元组(Tuple)在 .Net 4.0 的时候就有了,但元组也有些缺点,如: 1)Tuple 会影响代码的 阅读全文
posted @ 2019-03-14 14:45 maanshancss 阅读(592) 评论(0) 推荐(0) 编辑