Tagged Questions
17
votes
5answers
4k views
Why can't yield return appear inside a try block with a catch?
The following is okay:
try
{
Console.WriteLine("Before");
yield return 1;
Console.WriteLine("After");
}
finally
{
Console.WriteLine("Done");
}
The finally block runs when the ...