devxlogo

Controlling Exceptions in C# 6.0

Controlling Exceptions in C# 6.0

With C# 6.0, you can control exceptions with a conditional if. See below for an example:

Listing 1. Control Exceptions

try{    //Code that creates an exception}catch (System.DllNotFoundException dllEx) if (version != 3.0){// Conditional exception}

In the example, an exception is thrown only if the value of the version variable is not equal to 3.0

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist