How many types of exception handlers are there in .NET?
Answers were Sorted based on User's Feedback
Answer / mayur rathod
The exception information table represents four types of
exception handlers for protected blocks:
A finally handler that executes whenever the block exits,
whether that occurs by normal control flow or by an
unhandled exception.
A fault handler that must execute if an exception occurs,
but does not execute on completion of normal control flow.
A type-filtered handler that handles any exception of a
specified class or any of its derived classes.
A user-filtered handler that runs user-specified code to
determine whether the exception should be handled by the
associated handler or should be passed to the next protected
block.
Is This Answer Correct ? | 1 Yes | 2 No |
With these events, why wouldn't microsoft combine invalidate and paint, so that you wouldn't have to tell it to repaint, and then to force it to repaint?
Explain the difference between .net 2000 and .net 2005(features)? Which one is better?
What are the challenging issues you have faced in implementation project/Maintainance project in .net Functionality? How you have overcome that issue?
What is Polymorphism? How does VB.NET/C# achieve polymorphism?
How many design patterns can be created in .net?
What is meant by globalization and localization?
What is the single responsibility principle?
Explain different types of cookies in .NET?
C++ & C# differences ?
when web.config file is being called or referenced?tell me about the searialized procedure followed in page loading.
Where does the dispose method lie and how can it be used to clean up resources?
What is dot net architecture?