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 |
Difference between dispose and finallize method?
What is common language specification (cls)?
Explain why do we use msmq?
What is connected and diconnected database ?
why .net does not support multiple inheritance?
What is Atomicity?
Explain garbage collection?
Define satelite assembly?
Explain can 2 different applications use the same dll in gac at the same time?
What are the advantages of .net?
Explain me what is an anonymous method and how is it different from a lambda expression?
Is there any inbuilt tool or command provided by .NET to view the code inside the assembly?