المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : When the finally code is executed?



C# Programming
07-01-2009, 11:23 AM
try
{
int i = 1;
int j = 2;
return i;
}
finally
{
i += 3;
}

The code in the finally statement will be executed ? when? before return or after return ?