Getting all messages from InnerException(s)?
Unfortunately LINQ doesn’t offer methods that could process hierarchical structures, only collections. I actually have some extension methods that could help do this. I don’t have the exact code in hand but they’re something like this: // all error checking left out for brevity // a.k.a., linked list style enumerator public static IEnumerable<TSource> FromHierarchy<TSource>( this … Read more