.NET Tip: Exiting a Try/Catch Block

If you use a return statement within a Try/Catch block, there’s a behavior you need to be aware of in your code. Consider this block, for example:

try {
   DoSomething();
   return;
}
catch (Exception ex)
{
   // Handle exception here
}

// code continues here...

Assuming no exception is generated, the return statement will fire normally and the code flow will go back to whatever routine called this block of code. Adding a Finally section to this block of code, however, can lead to confusion. Take this code, for example:

try {
   Console.WriteLine("In try block");
   return;
}
catch (Exception ex)
{
   Console.WriteLine(ex.ToString());
}
finally
{
   Console.WriteLine("In finally block");
}

Even though the return statement normally will send you back to the calling block of code, the finally block always executes. For this snippet, the output will look like this:

In try block
In finally block

This behavior is by design, but it’s just something to remember if you’re using finally blocks along with return statements in your exception handling.

About the Author

Eric Smith is the owner of Northstar Computer Systems, a Web-hosting company based in Indianapolis, Indiana. He is also a MCT and MCSD who has been developing with .NET since 2001. In addition, he has written or contributed to 12 books covering .NET, ASP, and Visual Basic. Send him your questions and feedback via e-mail at questions@techniquescentral.com.

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read