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 |
What is the difference between reference type and value type?
Explain how to redirect tracing to a file?
How to find methods of a assembly file (not using ILDASM) Reflection
Is .NET a runtime service or a development platform?
What?s Singleton activation mode?
What is an anonymous method?
Tell us what is a variable of implicit type and what is its scope?
What are virtual destructures?
Is .net is a language?
Explain security measures exist for .net remoting in system.runtime.remoting?
Explain what are possible implementations of distributed applications in .net?
when web.config file is being called or referenced?tell me about the searialized procedure followed in page loading.