簡體   English   中英

C#中拋出異常后如何繼續代碼執行?

[英]How to continue code execution after the exception is thrown in C#?

拋出異常后如何更改此代碼以繼續執行應用程序?

if (str is null || str == string.Empty)
{
    throw new Exception("Wrong str");
}
                    try
                    {
                        if (str is null || str == string.Empty)
                        {
                            throw new Exception("Wrong str");
                        }
                    }
                    catch (Exception strException)
                    {
                        Console.WriteLine(strException.Message);
                    }

                    //Continue......

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM