摘要: ## 引言 现在模拟一个异步方法抛出了异常: ```csharp public static async Task ThrowAfter(int ms, string message) { await Task.Delay(ms); throw new Exception(message); } ` 阅读全文
posted @ 2023-07-31 08:13 NiueryDiary 阅读(857) 评论(0) 推荐(3) 编辑