S
Steve B.
Hi,
I I have in a code like this :
public void A()
{
try
{
DoSomething();
return;
}
catch
{
return;
}
finally
{
Clean();
}
}
When does the Clean() method is called if I have a return instruction in the
try block ?
Thanks,
Steve
I I have in a code like this :
public void A()
{
try
{
DoSomething();
return;
}
catch
{
return;
}
finally
{
Clean();
}
}
When does the Clean() method is called if I have a return instruction in the
try block ?
Thanks,
Steve