How to Catch Multiple Exceptions in C#
By FoxLearn 12/2/2024 7:49:01 AM 17
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 mark a method as obsolete or deprecated in C#
- How to Call the Base Constructor in C#
- Deep Copy of Object in C#
- How to cast int to enum in C#
- What is the difference between String and string in C#?
- How to retrieve the Downloads Directory Path in C#
- How to implement keyboard shortcuts in a Windows Forms application
- How to get current assembly in C#
Categories
Popular Posts
Spica Admin Dashboard Template
11/18/2024
Material Lite Admin Template
11/14/2024
DASHMIN Admin Dashboard Template
11/17/2024