public int divme(int x, int y)
{
int z;
try
{
z = x / y;
}
catch (Exception ex)
{
z = 0;
}
finally
{
return z;
}
}
this doesnot compile, it says "Control cannot leave the body of a finally clause"
...