Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Misc
7.7K+ articles
C#
2.0K+ articles
CSharp-Exception-Handling
6+ articles
CSharp-Exception
5 posts
Recent Articles
Popular Articles
Exception Filters in C#
Last Updated: 22 September 2025
An exception filter is a boolean expression attached to a catch block using the when keyword. The catch block executes only if the filter evaluates to true. If it evaluate...
read more
C#
CSharp-Exception
Custom Exceptions in C#
Last Updated: 23 April 2026
In C#, exceptions are used to handle unexpected situations in a program. The .NET Framework provides many built-in exception classes such as DivideByZeroException, NullRef...
read more
C#
CSharp-Exception
C# System Level Exception vs Application Level Exception
Last Updated: 25 January 2025
In C#, exceptions are categorized into two main types based on their origin and usage, which are System-level exceptions and Application-level exceptions. Understanding th...
read more
Difference Between
C#
Picked
CSharp-Exception
C# | Array IndexOutofRange Exception
Last Updated: 23 January 2019
C# supports the creation and manipulation of arrays, as a data structure. The index of an array is an integer value that has value in the interval [0, n-1], where n is the...
read more
Misc
C#
CSharp-Exception
Exceptions in C#
Last Updated: 28 October 2025
In C#, an exception is an unexpected event that occurs during the execution of a program, which disrupts the normal flow of the program. Exceptions can occur due to variou...
read more
C#
CSharp-Exception
CSharp-Exception-Handling