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 / kapil
will catch execute and after that finally block will
execute.
| Is This Answer Correct ? | 3 Yes | 1 No |
Is .net core the future?
How is meant by dll in .net?
What is the intermediate language between asp and asp.net1.0?
How do you turn off cookies for one page in your site?
I have a problem in installing visual Studio 2008 on PC that have Celeron Processor ? afterAll InstallionFaied . Pls suggest me . Is it possible or not .if Yes then How ?
As you know read-only variables and constants have many similarities, but what is at least one way that they differ?
If we want to write a Windows service that cannot be paused, only started and stopped. How to accomplish that?
<li id="Accomodation" runat="server" visible="false"><a href="../searchaccommodation.aspx?">Accomm</a></li> i have this code.now on server side i want to compare this id(Accommodation) value and want id i.e.Accommodation.visible=true;
What is .net debug & trace?
What is the root class in .net?
Types of JIT and what is econo-JIT ?
How we can achieve Connection pooling in .Net?