---
title: "Can multiple catch blocks be executed?"  
description: "Can multiple catch blocks be executed?"  
author: "Anonymous User"  
published: 2011-05-10  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/867/can-multiple-catch-blocks-be-executed  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Can multiple catch blocks be executed?

No, once the proper catch code fires off, the control is transferred to the finally block (if there are any), and then whatever follows the finally block.

## Answers

### Answer by Anonymous User

No, once the proper catch code fires off, the control is transferred to the finally block (if there are any), and then whatever follows the finally block.


---

Original Source: https://www.mindstick.com/interview/867/can-multiple-catch-blocks-be-executed

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
