Ans:
Yes

1 User has rated as useful.
Login to rate this answer.
Yes, the final block gets executed the order of the execution is:Try block, Catch block and Finally block.
Login to rate this answer.
The purpose of the finally block is to clean up any resources left after the exception occurred. Note that the finally block is always executed, even if no exception was thrown. The catch block is only executed if a managed exception is thrown within the associated try block.
(From the MSDN)
Login to rate this answer.
Yes
Login to rate this answer.
Dadan Tiwari
Answered On : Feb 13th, 2012
Yes. Finally block will always execute whether execption occur or not.
Login to rate this answer.
yes. Finally will be executed even if the exception hasn't occurred.
Catch all statement.
Code
try{}
catch{}
Or
try{}
catch(Exception e){}
Login to rate this answer.