溫馨提示×

C#異步線程的異常處理方法

c#
小樊
97
2024-07-11 09:24:39
欄目: 編程語言

在C#中,可以使用try-catch代碼塊來處理異步線程中的異常。以下是一個簡單的示例:

using System;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        try
        {
            await Task.Run(() =>
            {
                throw new Exception("Something went wrong");
            });
        }
        catch (Exception ex)
        {
            Console.WriteLine($"An error occurred: {ex.Message}");
        }
    }
}

在上面的示例中,我們使用了try-catch代碼塊來捕獲異步線程中拋出的異常。請注意,異常會在異步任務中拋出,并且被捕獲并處理。在catch代碼塊中,我們可以打印異常信息或執(zhí)行其他邏輯來處理異常。

0