0 votes
in C Sharp by

Can multiple catch blocks be executed?

1 Answer

0 votes
by

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.

...