1
vote
1answer
111 views
What is the difference (if any) between “yield” and “yield return” in C#?
I've traditionally used yield in C# without the return, e.g.:
IEnumerable<T> Foobar() {
foreach( var foo in _stuff ) {
yield foo;
}
}
But in other examples I'v …
5
votes
2answers
139 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 co …
11
votes
4answers
354 views
In C#, why can’t an anonymous method contain a yield statement?
I thought it would be nice to do something like this (with the lambda doing a yield return):
public IList<T> Find<T>(Expression<Func<T, bool>> expression) …
6
votes
4answers
348 views
Is yield return in C# thread-safe?
I have the following piece of code:
private Dictionary<object, object> items = new Dictionary<object, object>;
public IEnumerable<object> Keys
{
get
{
…
7
votes
4answers
233 views
Nested yield return with IEnumerable
I have the following function to get validation errors for a card. My question relates to dealing with GetErrors. Both methods have the same return type IEnumerable<ErrorInfo& …
1
vote
3answers
158 views
How does the NerdDinner example’s Dinner.GetRuleViolations function return a list?
From what I've read,
yield return <value>
jumps out of the function the moment the line is executed. However, Scott Guthrie's text indicates that
var errors = dinner.GetR …
14
votes
8answers
566 views
What is the purpose/advantage of using yield return iterators in C#?
All of the examples I've seen of using yield return x; inside a C# method could be done in the same way by just returning the whole list. In those cases, is there any benefit or ad …
0
votes
4answers
581 views
Can I implement yield return for IEnumerable functions in VB.NET?
In C#, when writing a function that returns an IEnumerble<>, you can use yeild return to return a single item of the enumeration and yeild break; to signify no remaining item …
4
votes
9answers
865 views
C# - Proper Use of yield return
The yield keyword is one of those keywords in C# that continues to mystify me and I've never been confident that I'm using it correctly.
Of the following two pieces of code, which …
