Home »

Can multiple catch blocks be executed for a single try statement?

Question ListCategory: C#.NETCan multiple catch blocks be executed for a single try statement?
jamessmith05 author asked 8 years ago
1 Answers
adamemliy16 author answered 8 years ago

No. Once the proper catch block processed, control is transferred to the finally block (if there are any).

Please login or Register to Submit Answer