private Task DoComplicatedTaskAsync() { Task task = Task.Run(() => { Thread.Sleep(3000); }); return task; } Explanation (Listing 8-39) The UI thread will ...
確定! 回上一頁