.NET Tip: Exiting a Try/Catch Block | CodeGuru

.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 […]

Written By
CodeGuru Staff
CodeGuru Staff
Feb 16, 2007
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

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.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.