Answer: Yes,we can.It will compile successfully.
For example:-
private int sum(int a, int b)
{
try
{
return a + b;
}
catch (Exception ex)
{
throw ex;
}
finally
{
check_value();
}
}
private void check_value()
{
}
Asked In: Many Interviews |
Alert Moderator