Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How many types of exception handlers are there in .NET?
How many types of exception handlers are there in .NET?
✍: Guest
Answer 1:
From
MSDN>gt; “How the Runtime Manages Exceptionsâ€
http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/cpguide/html/cpconexceptionsoverview.asp
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.
Answer 2:
1. Unstructured Exception Handling
2. Strutured Exception Handling
2013-12-16, 1666👍, 0💬
Popular Posts:
When should the register modifier be used? Does it really help? The register modifier hints to the c...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...
How do you open an SSH connection to a remote box? ????
.NET INTERVIEW QUESTIONS - What is the difference between System exceptions and Application exceptio...
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...