C# (Sharp) Programming Language Question:

Can multiple catch blocks be executed?

Tweet Share WhatsApp

Answer:

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.

Download C# (Sharp) Programming Language PDF Read All 163 C# (Sharp) Programming Language Questions
Previous QuestionNext Question
Does C# support multiple inheritance?Can you override private virtual methods?