This is a very interesting question.
Recall that in Linq, a lot of standard operators are provided that effectively chain together. There currently isn't one that lets you wrap custom exception handling around an inner sequence.
So my suggestion is to write a new one that allows you to specify an action that handles any exception that occurs during the execution of IEnumerator.MoveNext:
public static class EnumerableExceptions
{
public static IEnumerable<TItem> Catch<TItem, TEx>(
this IEnumerable<TItem> source,
Action<TEx> handler) where TEx : Exception
{
using (var enumerator = source.GetEnumerator())
{
for (; ; )
{
try
{
if (!enumerator.MoveNext())
yield break;
}
catch (TEx x)
{
handler(x);
yield break;
}
yield return enumerator.Current;
}
}
}
}
So now supposing we had this:
public class NastyException : Exception { }
public static IEnumerable<String> StringYielder()
{
yield return "apple";
yield return "banana";
throw new NastyException();
yield return "oracle";
yield return "grapefruit";
yield return "microsoft";
}
We'd like to be able to wrap all the body in a try/catch, which is sadly illegal. But what we can do is wrap the generated sequence:
public static IEnumerable<String> LoggingStringYielder()
{
return StringYielder().Catch(
(NastyException ex) =>
Console.WriteLine("Exception caught: " + ex.StackTrace));
}
That is, I get a sequence by calling the "raw" StringYielder method, and then I apply the new Catch operator to it, specifying what to do if a certain exception type occurs. Here I'm just going to print the stack trace.
So if I do this:
foreach (var str in LoggingStringYielder())
Console.WriteLine(str);
The program completes without crashing, and the output is:
apple
banana
Exception caught: at ConsoleApplication7.Program.<StringYielder>.. blah
So although you can't put a try catch around the code inside the original iterator method, you can now "wrap" it around the outside of that iterator method. It's like a non-intrusive way of injecting exception handling around the code between each yield return.
Bonus update!
To be really picky about the way I worded that last sentence:
Firstly you can throw before the first yield return and it is treated the same way, as that code executes in the first call to MoveNext. So "... the code before each..." would have been more accurate than "... the code between each...".
Secondly, a yield return may accept an expression that has to be evaluated, and which may throw during evaluation. That should be regarded as code that executes before the yield return occurs, even though syntactically it appears after it.