Tagged Questions

17
votes
4answers
2k 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>. private static ...
11
votes
5answers
2k 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 { foreach ...
7
votes
4answers
315 views

Is there ever a reason to not use 'yield return' when returning an IEnumerable?

Simple example - you have a method or a property that returns an IEnumerable and the caller is iterating over that in a foreach() loop. Should you always be using 'yield return' in your IEnumerable ...
7
votes
6answers
5k 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 yield return to return a single item of the enumeration and yield break; to signify no remaining items. What is the ...
4
votes
4answers
1k views

Using IEnumerable without foreach loop

I've gotta be missing something simple here. Take the following code: public IEnumerable<int> getInt(){ for(int i = 0; i < 10; i++){ yield return i; } } I can call this with: ...
3
votes
4answers
78 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 ...
3
votes
3answers
84 views

C# : Building java-style enums with inheritance

I am looking to build a java-style enum pattern for C# that also supports inheritance. I'm having trouble with yield return. Specifically, returning the BaseEnum's Values from the ChildEnum's Values ...
3
votes
3answers
248 views

What concrete type does 'yield return' return?

What is the concrete type for this IEnumerable<string>? private IEnumerable<string> GetIEnumerable() { yield return "a"; yield return "a"; yield return "a"; }
3
votes
3answers
615 views

Problem with debug watch in Visual Studio with yield return enumerator methods

I have a method which returns an IEnumerable<> which it builds up using the yield return syntax: namespace Validation { public class UserValidator { public ...
2
votes
3answers
407 views

Converting an IEnumberable<string> to IEnumberable<ListItem>

I'm getting this error which while trying to use the yield return feature in C#. The error appears on the select inside visual studio and I don't really understand it. In my mind I'm converting a ...
1
vote
2answers
71 views

Partition a list into subsets

I have a list of items which I would like to partition into subsets. For the sake of discussion lets say they're files. I would like each subset to contain at most 5 files, and for the total size of ...
1
vote
3answers
385 views

If yield return never occurs, is null returned?

The method returns IEnumerable via a yield return statement. If the yield statement never occurs (it's inside conditional logic), will the method return null, or will it return an Enumerable with a ...
0
votes
3answers
486 views

IEnumerable yield return combined with .AsParallel()

I've written some code to try and describe my concern: static void Main(string[] args) { IEnumerable<decimal> marks = GetClassMarks(); IEnumerable<Person> students = ...