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
What is .net and .net framework?
Explain About GDI object ?
What is .net environment?
What is the microsoft .net?
What is the procedure to add assemly to gac to make it shared one?
why you wouldn't want to write into it even if you could
What is machine.config in .net?
What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?
Whate are resource files?
What are the advantages of .net?
What is the difference between .net 2000 and .net 2005(features)? Which one is better?
which methos do you invoke on the dataadapter control to load your generated dataset with data?
How do you generate a strong name?
what user controls are and what server controls are and the differences between the two.
What is boxing and un-boxing in .net?