0
votes
2answers
62 views
how can a compiler that recognizes the iterators be implemented?
I have been using iterators for a while and I love them.
But although I have thought hard about it, I could not figure out "how a compiler that recognizes the iterators" be implemented. I have also …
4
votes
4answers
928 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 …
