摘要: async & await 的前世今生(Updated) 1. 方法打上Async关键字, 就可以使用await调用别的Async方法了 2. 记得在需要异步执行的方法里面调用await或者newstask, 才能开启新的线程 static void Main(string[] args) { // 异步方式 Conso... 阅读全文
posted @ 2016-03-01 15:01 MyCoolDog 阅读(1871) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Threading.Ta... 阅读全文
posted @ 2016-03-01 14:41 MyCoolDog 阅读(526) 评论(0) 推荐(0) 编辑