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 ...
7
votes
3answers
482 views

Is “yield keyword” useful outside of an iterator block? [closed]

The yield keyword documentation says: The yield keyword signals to the compiler that the method in which it appears is an iterator block. I have encountered code using the yield keyword ...
6
votes
1answer
151 views

Is 'yield' keyword a syntactic sugar ? What is its Implementation [closed]

Possible Duplicate: yield statement implementation I've seen msdn docs and it says: The yield keyword signals to the compiler that the method in which it appears is an iterator block. ...
3
votes
4answers
79 views

Why does calling Enumerable.First() appear to return a copy of the first item in the enumeration

Er, not quite sure how to phrase this but.. Given an IEnumerable created using yield return, containing three instances of a class, why does calling .First() seem to return a 'copy' of the first ...
1
vote
2answers
65 views

Alternative Way To Write Yield

Is there a way to get rid of the .FirstOrDefault() with the following setup. I love using the yield statement but I want to condense the IsRequired method to the point where I dont have to use ...
1
vote
5answers
204 views

Is using YIELD a read-only way to return a collection?

I'm writing an interface which has a collection property which I want to be read only. I don't want users of the interface to be able to modify the collection. The typical suggestion I've found for ...