摘要: public static Task Catch(this Task task,Action<Exception> callback) { return task.ContinueWith<Task>(delegate (Task t) { if (t != null && t.IsFaulted) 阅读全文
posted @ 2020-09-22 13:20 Observer_Dep 阅读(69) 评论(0) 推荐(0)