Describe how exceptions are handled by the CLR - DOT.NET

Describe how exceptions are handled by the CLR?

Usually the exceptions that occur in the try are caught in the catch block. The finally is used to do all the cleaning up work. But exceptions can occur even in the finally block. By using CLR, the exception are caught even in the finally block. Also when an exception is thrown, the CLR looks for an appropriate catch filter that can handle the exception and then it executes the finally block before terminating the execution on the catch filter.
How to throw a custom exception? - DOT.NET
The usual try - catch - finally - ent try format has to be followed....
What is the difference between Localization and Globalization? - DOT.NET
In Globalization, an application is developed to support various languages and cultures.....
What is Unicode? - DOT.NET
Unicode is a 16-bit character encoding scheme that enables characters from various languages to be used...
Post your comment