-1
我有一個顯示"Cannot convert string'' to Decimal"
的特定錯誤的應用程序。我想刪除這個錯誤。我不想顯示"Cannot convert string'' to Decimal"
,但其他可以顯示。應該如何計劃我Catch ex As Exception
如何刪除特定的例外?
我有一個顯示"Cannot convert string'' to Decimal"
的特定錯誤的應用程序。我想刪除這個錯誤。我不想顯示"Cannot convert string'' to Decimal"
,但其他可以顯示。應該如何計劃我Catch ex As Exception
如何刪除特定的例外?
你必須編寫代碼這樣:
Try
(your code here)
Catch ex As FormatException
(your exception handler)
End Try
這將捉只出現FormatException類型的例外。正如你在這個例子中看到的那樣,你可以在MSDN中的方法的參考文獻中找到它所拋出異常的類型信息http://msdn.microsoft.com/en-us//library/hf9z3s65(v=vs.110).aspx。
有關異常處理的更多信息,請http://msdn.microsoft.com/en-us//library/fk6t46tz.aspx
我猜你在談論C#。那是對的嗎? –