在C#中,ContinueWith
方法用于在任務完成后執行另一個任務。它本身并不能直接暫停任務,但可以用于控制任務的執行流程。如果你想在某個條件下暫停任務的執行,可以在ContinueWith
方法中使用條件判斷。
以下是一個簡單的示例,展示了如何使用ContinueWith
來控制任務的執行:
using System;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
await Task.Run(async () =>
{
Console.WriteLine("Task started.");
await Task.Delay(1000); // 模擬耗時操作
Console.WriteLine("Task completed.");
})
.ContinueWith(t =>
{
if (t.IsFaulted)
{
Console.WriteLine("Task failed.");
}
else if (t.IsCanceled)
{
Console.WriteLine("Task canceled.");
}
else
{
Console.WriteLine("Continuing with the next task...");
// 在這里添加你想在任務完成后執行的操作
}
});
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
}
在這個示例中,我們首先啟動一個任務,然后使用ContinueWith
方法在該任務完成后執行另一個任務。在ContinueWith
方法中,我們可以檢查任務是否失敗、被取消或成功完成,并根據需要執行相應的操作。