vote up 1 vote down star

Possible Duplicate:
In C# will the Finally block be executed in a try, catch, finally if an unhandled exception is thrown ?

Will finally be executed in this scenario (in C#)?

try
{
    // Do something.
}
catch
{
    // Rethrow the exception.
    throw;
}
finally
{
    // Will this part be executed?
}
flag

See this duplicate (or one of the other duplicates linked there): stackoverflow.com/questions/833946/… – divo May 23 at 8:55

closed as exact duplicate by Earwicker, divo, Noldorin, Eoin Campbell, Henk Holterman May 23 at 9:56

2 Answers

vote up 7 vote down check

Yes, finally is always executed.

A simple example for demonstrating the behaviour:

private void Button_Click(object sender, EventArgs e)
{
    try
    {
        ThrowingMethod();
    }
    catch
    { 
    }
}

private void ThrowingMethod()
{
    try
    {
        throw new InvalidOperationException("some exception");
    }
    catch
    {
        throw;
    }
    finally
    {
        MessageBox.Show("finally");
    }
}
link|flag
vote up 1 vote down

(Edit: Clarifications from comments incorporated - thanks guys)
Finally is always executed. The only exceptions I know of are;

  • You pull the power plug
  • If a thread that is running as "background" is terminated because the main program to which it belongs is ending, the finally block in that thread will not be executed. See Joseph Albahari.
  • Other async exceptions like stackoverflows and out-of-memory. See this question.

Most of the scenarios where Finally is not executed has to do with catastrohic failure, with the exception of the background thread one, so it is worth being aware of that one in particular.

link|flag
See this related answer: stackoverflow.com/questions/833946/… – divo May 23 at 8:54
"The only two exceptions...". There are others. E.g. Environment.FailFast. – Joe May 23 at 11:17
Thanks Divo and Joe - I learned something new there. – Frans May 23 at 16:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.