adspace


questions on various scenarios on exception handling?
like for example....

try
{
a;
b; ...exception occurs here...what happens...will catch
execute or will finally execute...will c execute
c;
}
catch
{
a;
b;
c;
}
fianlly
{
a;
b;
}

Answer Posted / kapil

will catch execute and after that finally block will
execute.

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1141