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 |
What are the difference bbetween value type & reference types ? Example from .net. Integer & struct are value types or reference types in .net?
I want to serialize instances of my class. Should I use xmlserializer, soapformatter or binaryformatter?
What versions of .net are there?
How to create properties and methods using controls?
What is .net environment?
Describe the programming model of a windows service
When developing a Windows service for .NET, which namespace do you typically look in for required classes?
What are object pooling and connection pooling and difference?
How can I tell if .net 3.5 is installed?
What is the difference between .net and laravel?
Is atl redundant in the .net world?
What is CCW (COM Callable Wrapper) ?