Basically I've heard that certain conditions will cause .net to blow past the finally block. Does anyone know what those conditions are?
|
Two possibilities: The finally block will not be executed when there's a |
|||||||||||||
|
|
Unless the CLR blows up and goes down with an ExecutingEngineException (I've seen a few in the .net 1.1 days with just the right amount of COM Interop :) .. I think finally should always execute. |
|||||||
|
|
You can get a situation where the code in the try block causes a SecurityException to be thrown before the try block entered (instead the exception is thrown when the containing method is called (see http://msdn.microsoft.com/en-us/library/fk6t46tz(VS.71).aspx)), in this situation you never even enter the try block so the code in the finally block is never called. Other possibilities include StackOverflowException, and ExecutingEngineException. |
||||
|
|
|
There is also Application.Exit method. |
|||||
|
|
Neither code which follows a finally block, nor code in outer scopes, will execute without the finally block having been started first (an exception within the finally block may cause it to exit prematurely, in which case execution will jump out from the finalizer to an outer scope). If code prior to the finally block gets stuck in an endless loop or a method that never exits, or if the execution context is destroyed altogether, the finally block will not execute. Note that it is proper to rely upon finally blocks, unlike "Finalize" methods (or C# "destructors") which should not properly be relied upon. |
|||
|
|