How many types of exception handlers are there in .NET?

Answers were Sorted based on User's Feedback



How many types of exception handlers are there in .NET?..

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

How many types of exception handlers are there in .NET?..

Answer / versha

1)Error provider

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More Dot Net General Interview Questions

Do you know what is lambda expressions in c#?

0 Answers  


Explain the two different types of typecasting?

1 Answers  


What is the use of immutability?

0 Answers  


Differences between dll and exe?

0 Answers  


What is the difference between "using system.data;" and directly adding the reference from "add references dialog box"?

0 Answers  


What are Attributes in .NET?

0 Answers  


What is Garbage Collection in .Net? Garbage collection process?

3 Answers  


How will you register com+ services?

0 Answers  


Explain the difference between vb and vb.net?

0 Answers  


Describe the Managed Execution Process?

0 Answers  


Explain can 2 different applications use the same dll in gac at the same time?

0 Answers  


what is the meaning silverligt control

0 Answers  


Categories