vote up 6 vote down star

I'm reviewing some code for a friend and say that he was using a return statement inside of a try-finally block. Does the code in the Finally section still fire even though the rest of the try block doesn't?

Example:

public bool someMethod()
{
  try
  {
    return true;
    throw new Exception("test"); // doesn't seem to get executed
  }
  finally
  {
    //code in question
  }
}
flag

4  
I would have simply modified that method to write a message to the console and then tested it rather than asking a question on SO and waiting for a response. It's much less effort, the answer's immediate, and you're not cluttering up SO with questions that you can answer for yourself. – Robert Rossney Dec 6 '08 at 19:55

8 Answers

vote up 36 vote down check

Simple answer: Yes.

link|flag
vote up 7 vote down

Here's a little test:

class Class1
{
    [STAThread]
    static void Main(string[] args)
    {
        Console.WriteLine("before");
        Console.WriteLine(test());
        Console.WriteLine("after");
    }

    static string test()
    {
        try
        {
            return "return";
        }
        finally
        {
            Console.WriteLine("finally");
        }
    }
}

The result is:

before

finally

return

after

link|flag
vote up 0 vote down

Nitpicking is my life.;-> Well, that and snarkiness.

link|flag
this and tghe other should be in comments - we're trying to produce something useful, remember! – Ruben Bartelink Dec 5 '08 at 21:44
Agreed, I deleted my response (and I just noticed that Jeffrey touched on that topic before me - silly default by-Votes sorting.) However, my post was only partially tongue-in-cheek. People tend to rely on finally and forget external conditions. Also, jeez, lighten up, a bit of humor never hurts... – Mihai Limbasan Dec 5 '08 at 21:49
Just making the point that comments is where relevant banter and discussion can go. The actual responses are sorted by votes so that the relevant stuff is easiest to find (and so peopple dont have to vote stuff to <0 :D). BTW the podcast is well worth a listen (if you have lots of time!) – Ruben Bartelink Dec 9 '08 at 11:49
vote up 0 vote down

In response to Perpetualcoder - normally the finally is guaranteed to fire, but as has been noted above, there are certain cases where this won't apply. For instance, if you have a StackOverflowException, the application comes to a sudden halt - so the finally block never gets called.

Bottom line - MSDN does not always equal truth.

link|flag
vote up 3 vote down

Quoting from MSDN

finally is used to guarantee a statement block of code executes regardless of how the preceding try block is exited.

link|flag
vote up 21 vote down

Not to be rude, but whenever I have something like, "how does the framework handle X?", I just make a little sample console app and try it out. Especially when it's something simple like this. You could basically paste your code above into a .cs file, compile it in the VS command line, and have your answer in a matter of seconds.

link|flag
Agreed. It's the best way of learning about most basic stuff. And the good thing is that you probably learn much more similar things accidentally if you do that. – Mehrdad Afshari Dec 5 '08 at 21:02
Although that's exactly what I would have done, I do see the value in having a resource like SO where we can share the results of these tests to prevent others from having to repeat them. – Jon B Dec 5 '08 at 21:04
To be honest, I normally would do a simple console app like this; however, I'm not at a computer that has a C# compiler on it. If I was looking at the code on a Windows box at the moment I would be creating one. Right now, SO's faster than me driving to another location for such a test. – JamesEggers Dec 5 '08 at 21:08
Yeah, I agree. Eggers, you suck :) – Richie_W Dec 5 '08 at 21:49
1  
He could have gotten his answer from trying it out, but how confident could he be that his result wasn't just a coincidence? Maybe the type of exception is important. Maybe some other context is a factor. – Rob Kennedy Dec 5 '08 at 23:08
show 1 more comment
vote up 1 vote down

Yes. That is in fact that main point of a finally statement. Unless something catestrophic occurs (out of memory, computer unplugged, etc.) the finally statement should always be executed.

link|flag
vote up 33 vote down

Normally, yes. The finally section is guaranteed to execute whatever happens including exceptions or return statement. An exception to this rule is an asynchronous exception happening on the thread (ThreadAbortException, OutOfMemoryException, StackOverflowException).

To learn more about async exceptions and reliable code in that situations, read about constrained execution regions.

link|flag
2  
Yes, StackOverflow is always the exception... :) – dalle Dec 5 '08 at 21:06
+1 For mentioning exceptions. – Andrew Hare Apr 16 at 14:19

Your Answer

Get an OpenID
or

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