If I have a coroutine as follows, will the code in the finally block get called?

public IEnumerator MyCoroutine(int input)
{
  try
  {
    if(input > 10)
    {
      Console.WriteLine("Can't count that high.");
      yield break;
    }
    Console.WriteLine("Counting:");
    for(int i = 0; i < input; i++)
    {
      Console.WriteLine(i.ToString());
      yield return null;
    }
  }
  finally
  {
    Console.WriteLine("Finally!");
  }
}
link|improve this question

7  
Did you try it and see what happens? – CodeNaked May 25 '11 at 18:41
I guess your console will hold the answer to that question. – Jan-Peter Vos May 25 '11 at 18:42
This can easily be verified in your debugger – Gustavo Mori May 25 '11 at 18:45
2  
Didn't you mean IEnumerable<int> as return type? – Henk Holterman May 25 '11 at 18:45
@Henk Holterman - I have added a response in my answer – manojlds May 25 '11 at 18:50
feedback

4 Answers

up vote 11 down vote accepted

Yes:

Control is always passed to the finally block regardless of how the try block exits.

http://msdn.microsoft.com/en-us/library/zwc8s4fz.aspx

Additionally:

A yield return statement cannot be located anywhere inside a try-catch block. It can be located in a try block if the try block is followed by a finally block.

http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx

link|improve this answer
This answer is misleading; finally blocks have a unique interaction with yield return statements (i.e. iterator blocks). See supercat's answer below. See also this excellent blog post by Dan Crevier: blogs.msdn.com/b/dancre/archive/2008/03/14/… – Scott B Feb 14 at 0:36
That is an excellent blog post! Very clear on when and how it all works. – C.Barlow Feb 14 at 1:18
feedback

All of the answers so far emit a crucial detail: code in a finally block which wraps a yield return will execute if and when IDisposable.Dispose is called upon the iterator/enumerator which executed the yield return. If outside code calls GetEnumerator() on an iterator and then, calls MoveNext() until the iterator performs a after the iterator performs a yield return within a finally block, and then abandons the enumerator without calling Dispose, the code in the finally block will not run. Depending upon what the iterator was doing, it may get annihilated by the garbage collector (though without having a chance at cleaning up any outside resources) or it may end up permanently or semi-permanently rooted as a memory leak (that could happen if, for example, it attached a lambda expression to a long-lived object's event handler).

Note that while both vb and c# are very good about ensuring that foreach loops will call Dispose on enumerators, it's possible to use iterators by calling GetEnumerator() explicitly, and it's possible some code might do so without calling Dispose(). There isn't much an iterator can do about that, but anyone writing iterators needs to be aware of the possibility.

link|improve this answer
feedback

According to the documentation, yes, code in the finally will always be called.

Since you are using yield, the finally block will not be executed until you access the IEnumerator returned by the method. For example:

void Main()
{
    var x = MyCoroutine(12);

    //Console.WriteLines will happen when the following
    //statement is executed
    var y = x.MoveNext();
}
link|improve this answer
feedback

If you were just lazy to add Main() etc, get the code from here, run it and see what happens:

YieldReturnAndFinally

Response to @Henk Holterman's comment

Any of the below four is valid:

* IEnumerable
* IEnumerable<T>
* IEnumerator
* IEnumerator<T>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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