vote up 3 vote down star
2

Basically I've heard that certain conditions will cause .net to blow past the finally block. Does anyone know what those conditions are?

flag

4 Answers

vote up 6 vote down check

Two possibilities:

  • StackOverflowException
  • ExecutingEngineException

The finally block will not be executed when there's a StackOverflowException since there's no room on the stack to even execute any more code. It will also not be called when there's an ExecutingEngineException, which is very rare.

link|flag
vote up 0 vote down

There is also Application.Exit method.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Nice.. downvote the first answer that says the same thing as the top-voted one. Care to comment, SO user? – Gishu Sep 22 '08 at 3:06
Just cowards, Gishu. Upvote from me :) – Andrei Rinea Oct 7 '08 at 0:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.