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?
}