Try – Catch – Finally & return

One of the most frequently asked questions in C# interview and most easy questions

try

{

set connections & execute query & other operations

return;

}

catch(Exception  exc)

{

throw;

}

finally

{

// other operations

}

Now question is wht will happen ? is it going to execute code in the finally() loop ….

Answer is YES !!

finally() block will execute irrespective of the return in the try loop.