C# (Sharp) Programming Language Question:
Can multiple catch blocks be executed?
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.
Previous Question | Next Question |
Does C# support multiple inheritance? | Can you override private virtual methods? |