vote up 11 vote down star

If you run the code below it actually executes the finally after every call to the goto:

    int i = 0;
Found:
    i++;
    try
    {
        throw new Exception();
    }
    catch (Exception)
    {
        goto Found;
    }
    finally
    {
        Console.Write("{0}\t", i);
    }

Why?

flag

2  
-1 for using GOTO – Prashant Jul 17 at 5:27
3  
I didn't do this in production code. It was just a hypothetical situation. – Lucas McCoy Jul 17 at 5:28
1  
Main reason to down vote: I thought its noob kind of question, after earning over 4k points!!! I'm sorry... :) – Prashant Jul 17 at 6:40
2  
Now that you know the answer, you can solve this puzzle: write me a program in which there is a reachable goto which goes to an unreachable label. – Eric Lippert Jul 17 at 7:17
6  
-1 for using GOTO, really? That's not stupid at all. – Geo Jul 17 at 7:17
show 2 more comments

7 Answers

vote up 20 vote down check

Why do you expect it to not execute?

If you have try/catch/finally or try/finally block, finally block executes no matter what code you may have in the try or catch block most of the time.

Instead of goto, consider 'return'.

//imagine this try/catch/finally block is inside a function with return type of bool. 
try
{
    throw new Exception();
}
catch (Exception)
{
    return false; //Let's say you put a return here, finally block still executes.
}
finally
{
    Console.WriteLine("I am in finally!");
}
link|flag
I guess I thought a goto would override this. – Lucas McCoy Jul 17 at 5:28
No construct can override this behavior. 'goto'/'return'/any other construct you can imagine. – SolutionYogi Jul 17 at 5:29
2  
what happens if u have a 'return true;' in the finally block (against the example code above). what get's returned? the false or the true? – Pure.Krome Jul 17 at 5:33
5  
@Pure.Krome, You can't put a return statement in a finally block. – Jonathon Watney Jul 17 at 5:34
1  
@Pure.Krome, As Jonathon Watney said, you'll get a "Compiler error CS0157: Control cannot leave the body of a finally clause". – Moayad Mardini Jul 17 at 5:47
show 3 more comments
vote up 25 vote down

The following text comes from the C# Language Specification (8.9.3 The goto statement)


A goto statement is executed as follows:

  • If the goto statement exits one or more try blocks with associated finally blocks, control is initially transferred to the finally block of the innermost try statement. When and if control reaches the end point of a finally block, control is transferred to the finally block of the next enclosing try statement. This process is repeated until the finally blocks of all intervening try statements have been executed.
  • Control is transferred to the target of the goto statement.
link|flag
2  
+1 for referencing the spec. – Mehrdad Afshari Jul 17 at 5:40
+1 for referencing the specification, too. – Moayad Mardini Jul 17 at 5:50
God! The spec is pretty long ;-) – Lucas McCoy Jul 17 at 15:08
vote up 6 vote down

The gist of the answers given - that when control leaves the protected region via any means, whether "return", "goto", "break", "continue" or "throw", the "finally" is executed - is correct. However, I note that almost every answer says something like "the finally block always runs". The finally block does NOT always run. There are many situations in which the finally block does not run.

Who wants to try to list them all?

link|flag
According to the spec "The statements of a finally block are always executed when control leaves a try statement. This is true whether the control transfer occurs as a result of normal execution, as a result of executing a break, continue, goto, or return statement, or as a result of propagating an exception out of the try statement." However, I'd say a StackOverflowException is one, because nothing can deal with it as far as I can see. – Colin Mackay Jul 17 at 7:29
Personally, I have mentioned the fact that finally is not always run several times on SO (well, let alone things about killing the process and pulling the plug). e.g. stackoverflow.com/questions/833946/… . I think MS docs are not very good warning people about this while they describe finally. I think a very small percentage of .NET devs are aware. – Mehrdad Afshari Jul 17 at 8:34
Colin, indeed, the key point is WHEN CONTROL LEAVES. If control doesn't leave then the finally block does not execute! The try-protected region might contain an infinite loop, for example. – Eric Lippert Jul 17 at 14:02
@Eric: I totally got this question from your blog post. I also didn't think about an infinite loop in a try/catch block – Lucas McCoy Jul 17 at 14:57
vote up 3 vote down

Seems reasonable. A finally block is always run after either the try or the catch.

Similarly

try
{
  // do something
  return;
}
finally
{
  // do something else
}

will always run the finally block. EDIT - but see Eric's comments above.

link|flag
vote up 2 vote down

That's by design. In the exception handler you can take some exception-specific action. In the finally block you should do resource cleanup - that's why the finally block is always executed no matter what the exception handling code is.

link|flag
vote up 0 vote down

Because a finally statement is expected to execute after leaving the try (or catch when an exception is caught). This includes when you make your goto call.

link|flag
vote up 0 vote down

As people have mentioned, finally runs no matter the program flow. Of course, the finally block is optional, so if you don't need it, don't use it.

link|flag

Your Answer

Get an OpenID
or

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