Tagged Questions
12
votes
2answers
1k views
yield return statement inside a using() { } block Disposes before executing
I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.
This is all based on the .NET 2.0 Framework (given constraints for the ...
3
votes
2answers
208 views
Yield return from a try/catch block
As Eric Lippert described in this article, yield return is not allowed within try/catch clauses.
Is there a nice way I could get something like this, without having to write my own IEnumerator by ...