Interview Questions

Can multiple catch blocks be executed?

C# Interview Questions and Answers


(Continued from previous question...)

107. 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.

(Continued on next question...)

Other Interview Questions