How to Catch Multiple Exceptions in C#
By FoxLearn 12/2/2024 7:49:01 AM 150
In C#, you can catch multiple exceptions in a single catch block by using a few different approaches.
How to Catch Multiple Exceptions in C#?
From C# 7.0 onwards, you can catch multiple exception types in a single catch
block using a pipe (|
) between exception types.
For example, Using catch with Multiple Exception Types (C# 7.0 and later)
try { // Code that may throw exceptions } catch (ArgumentNullException | DivideByZeroException ex) { Console.WriteLine("An exception of type ArgumentNullException or DivideByZeroException was caught: " + ex.Message); }
In C# 6.0 and later, you can use exception filters to catch specific exceptions only if certain conditions are met, making the code more readable and expressive.
For example, Using Exception Filters (C# 6.0 and later)
try { // Code that may throw exceptions } catch (Exception ex) when (ex is ArgumentNullException || ex is DivideByZeroException) { Console.WriteLine("ArgumentNullException or DivideByZeroException caught: " + ex.Message); }
Catching System.Exception
and switching on exception types using is
allows you to catch and handle specific exception types in a controlled manner.
- How to fix 'Failure sending mail' in C#
- How to Parse a Comma-Separated String from App.config in C#
- How to convert a dictionary to a list in C#
- How to retrieve the Executable Path in C#
- How to validate an IP address in C#
- How to retrieve the Downloads Directory Path in C#
- C# Tutorial
- Dictionary with multiple values per key in C#
Categories
Popular Posts
Freedash bootstrap lite
11/13/2024
Dashboardkit Bootstrap
11/13/2024
Stisla Admin Dashboard Template
11/18/2024