Tagged Questions
IEnumerable is a .NET interface for iterating (or enumerating) a collection of items.
126
votes
13answers
58k views
LINQ equivalent of foreach for IEnumerable<T>
I'd like to do the equivalent of the following in LINQ, but I can't figure out how:
IEnumerable<Item> items = GetItems();
items.ForEach(i => i.DoStuff());
What is the real syntax?
52
votes
40answers
2k views
What's your favorite LINQ to Objects operator which is not built-in?
With extension methods, we can write handy LINQ operators which solve generic problems.
I want to hear which methods or overloads you are missing in the System.Linq namespace and how you implemented ...
47
votes
17answers
42k views
Howto: Count the items from a IEnumerable<T> without iterating?
private IEnumerable<string> Tables
{
get {
yield return "Foo";
yield return "Bar";
}
}
Let's say I want iterate on those and write something like ...
46
votes
2answers
5k views
Returning IEnumerable<T> vs IQueryable<T>
what is the difference between returning iqueryable vs ienumerable.
IQueryable<Customer> custs = from c in db.Customers
where c.City == "<City>"
select c;
IEnumerable<Customer> ...
44
votes
2answers
12k views
IList vs IEnumerable for Collections on Entities
When I have entities in my domain with lists of things, should they be exposed as ILists or IEnumerables? E.g. Order has a bunch of OrderLines.
41
votes
11answers
4k views
Passing a single item as IEnumerable<T>
Is there a common way to pass a single item of type T to a method which expects an IEnumerable<T> parameter? Language is C#, framework version 2.0.
Currently I am using a helper method (it's ...
37
votes
5answers
4k views
What's the difference between IQueryable and IEnumerable
I'm confused as to the difference. Being fairly new to .Net, I know I can query IEnumerables using the Linq extensions. So what is this IQueryable and how does it differ?
36
votes
6answers
25k views
How can I add an item to a IEnumerable<T> collection?
My question as title above. For example,
IEnumerable<T> items = new T[]{new T("msg")};
items.ToList().Add(new T("msg2"));
but after all it only has 1 item inside.
Can we have a method like ...
33
votes
5answers
5k views
IEnumerable and Recursion using yield return
I have an IEnumerable<T> method that I'm using to find controls in a WebForms page.
The method is recursive and I'm having some problems returning the type I want when the yield return is ...
33
votes
3answers
25k views
C# Distinct on IEnumerable<T> with custom IEqualityComparer
Here's what I'm trying to do. I'm querying an XML file using LINQ to XML, which gives me an IEnumerable<T> object, where T is my "Village" class, filled with the results of this query. Some results ...
29
votes
4answers
39k views
C# Freely convert between List<T> and IEnumerable<T>
How can I convert a List to an IEnumerable and back again.
The reason I want to do this is to run a series of LINQ statements on the List i.e. sort etc
23
votes
3answers
703 views
Why was IEnumerable<T> made covariant in C# 4?
In earlier versions of C# IEnumerable was defined like this:
public interface IEnumerable<T> : IEnumerable
Since C# 4 the definition is:
public interface IEnumerable<out T> : ...
23
votes
7answers
5k views
Can anyone explain IEnumerable and IEnumerator to me?
Can anyone explain IEnumerable and IEnumerator to me?
for example, when to use it over foreach? what's the difference between IEnumerable and IEnumerator? Why do we need to use it?
20
votes
5answers
428 views
Resharper says I shouldn't use List<T>
I have a method:
static void FileChangesDetected(List<ChangedFiles> files)
I used Visual Studio 2010 and Resharper. Resharper always recommends that I change the List<T> to ...
19
votes
7answers
4k views
Why use .AsEnumerable() rather than casting to IEnumerable<T>?
One of the extension methods on IEnumerable<T> is .AsEnumerable(). This method converts the enumerable object it was called on into an instance of IEnumerable<T>. However, since an object ...
19
votes
12answers
4k views
Should I always return IEnumerable<T> instead of IList<T>?
When I'm writing my DAL or other code that returns a set of items, should I always make my return statement:
public IEnumerable<FooBar> GetRecentItems()
or
public IList<FooBar> ...
19
votes
4answers
19k views
What is the difference between IEnumerator and IEnumerable? [closed]
What are the differences between IEnumerator and IEnumerable?
19
votes
4answers
2k views
Why does IEnumerable<T> inherit from IEnumerable?
This might be a old question: Why does IEnumerable<T> inherit from IEnumerable?
This is how .NET do, but it brings a little trouble. Every time I write a class implements IEumerable<T>, I ...
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 ...
17
votes
5answers
5k views
ReadOnlyCollection or IEnumerable for exposing member collections?
Is there any reason to expose an internal collection as a ReadOnlyCollection rather than an IEnumerable if the calling code only iterates over the collection?
class Bar
{
private ...
17
votes
3answers
26k views
C# List<> GroupBy 2 Values
I'm using C# on Framework 3.5. I'm looking to quickly group a Generic List<> by two properties. For the sake of this example lets say I have a List of an Order type with properties of CustomerId, ...
17
votes
3answers
2k views
Is Yield Return == IEnumerable & IEnumerator?
I just want to verify, is yield return a shortcut for implementing IEnumerable and IEnumerator?
Thanks,
John
15
votes
5answers
2k views
C#: How can I make an IEnumerable<T> thread safe?
Say I have this simple method:
public IEnumerable<uint> GetNumbers()
{
uint n = 0;
while(n < 100)
yield return n++;
}
How would you make this thread safe? And by that I ...
14
votes
4answers
10k views
Convert IEnumerable to DataTable
Is there a nice way to convert an IEnumerable to a DataTable?
I could use reflection to get the properties and the values, but that seems a bit inefficient, is there something build-in?
(I know the ...
13
votes
5answers
6k views
LINQ - IEnumerable vs List - What to Use? How do they work?
I have some doubts over how Enumerators work, and LINQ. Consider these two simple selects:
List<Animal> sel = (from animal in Animals
join race in Species
...
13
votes
3answers
6k views
Difference between IEnumerable Count() and Length
What are the key differences between IEnumerable Count() and Length?
13
votes
5answers
1k views
Optimal LINQ query to get a random sub collection - Shuffle
Please suggest an easiest way to get a random shuffled collection of count 'n' from a collection having 'N' items. where n <= N
12
votes
4answers
1k views
How do I Aggregate multiple IEnumerables of T
Given....
Public MasterList as IEnumerable(Of MasterItem)
Public Class MasterItem(Of T)
Public SubItems as IEnumerable(Of T)
End Class
I would like a single IEnumerable(Of T) which will ...
11
votes
4answers
502 views
Is IEnumerable required to use a foreach loop?
I was wondering, when exactly can I use the foreach loop? Do I have to implement IEnumerable?
11
votes
8answers
390 views
IEnumerable<T> vs T[]
I just realize that maybe I was mistaken all the time in exposing T[] to my views, instead of IEnumerable<T>.
Usually, for this kind of code:
foreach (var item in items) {}
item should be ...
11
votes
7answers
668 views
Should I return an IEnumerable or IList?
I wish to return an ordered list of items from a method. Should my return type be IEnumerable or IList?
11
votes
3answers
379 views
LINQ query expressions that operate on types (monads?) other than IEnumerable<T> — Possible uses?
I'm reading the book Real-world functional programming by Tomas Petricek and Jon Skeet and I'm having a hard time digesting the section on computation expressions1) (aka monads).
Through this book, I ...
11
votes
4answers
3k views
C#: Recommended way to check if a sequence is empty
A method returns a sequence, IEnumerable<T>, and you now want to check if it is empty. How do you recommend doing that? I'm looking for both good readability and good performance.
The first ...
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 ...
11
votes
3answers
385 views
Chaining IEnumerables in C#?
Is there a simple built-in way to take an ordered list of IEnumerables and return a single IEnumerable which yields, in order, all the elements in the first, then the second, and so on.
I could ...
10
votes
9answers
205 views
What is the technically correct term for an instance of class which implements IEnumerable?
Do we call such an instance a "collection"? An "enumerable"? Or something else? I ask with my two main goals being:
To be understood by other developers, without having to explain that the class ...
10
votes
6answers
2k views
IEnumerable<> to IList<>
I am using Linq to query my database and returning a generic IList.
Whatever I tried I couldn't convert an IQueryable to an IList.
Here is my code.
I cannot write simpler than this and I don't ...
10
votes
2answers
3k views
Recreating a Dictionary from an IEnumerable
But some of the callers is the Dictionary's TryGetValue and ContainsKey and so require the result of the method to be a Dictionary, how can I convert the IEnumerable<KeyValuePair<string, ...
10
votes
6answers
2k views
Enumerating Collections that are not inherently IEnumerable?
When you want to recursively enumerate a hierarchical object, selecting some elements based on some criteria, there are numerous examples of techniques like "flattening" and then filtering using Linq ...
10
votes
10answers
6k views
Why is .ForEach() on IList<T> and not on IEnumerable<T>?
I've noticed when writing LINQ-y code that .ForEach() is a nice idiom to use. For example, here is a piece of code that takes the following inputs, and produces these outputs:
{ "One" } => "One"
...
9
votes
2answers
182 views
Splitting a deferred IEnumerable<T> into two sequences without re-evaluation?
I have a method that needs to process an incoming sequence of commands and split the results into different buckets depending on some properties of the result. For example:
class Pets
{
public ...
9
votes
2answers
204 views
Enumerable.Last<T>() and C# arrays
Say I have a simple array:
double[] myDoubleArray = new double[] { 0, 1, 2, 3, 4, 5 };
Is this as performant:
double last = myDoubleArray.Last();
as this?
double last = ...
9
votes
2answers
441 views
Why can't I use the enumerator of an array, instead of implementing it myself?
I have some code like this:
public class EffectValues : IEnumerable<object>
{
public object [ ] Values { get; set; }
public IEnumerator<object> GetEnumerator ( )
{
...
9
votes
5answers
380 views
return single instance object as IEnumerable
I have in instance of class foo and i want to return it as IEnumerable.
Can i do it without creating a new list etc..
Perhaps something like the following:
IEnumerable<foo>.fromInstance(foo)
9
votes
2answers
2k views
How do I edit an IEnumerable<T> with MVC3?
Given the following types
public class SomeValue
{
public int Id { get; set; }
public int Value { get; set; }
}
public class SomeModel
{
public string SomeProp1 { get; set; }
public ...
9
votes
2answers
708 views
Map two lists into a dictionary in C#
Given two IEnumerables of the same size, how can I convert it to a Dictionary using Linq?
IEnumerable<string> keys = new List<string>() { "A", "B", "C" };
IEnumerable<string> values ...
9
votes
5answers
214 views
What is the exact difference between returning an IEnumerable instance and the yield return statement in C#
Currently I'm working with some libraries applying deferred execution via iterators. In some situations I have the need to "forward" the recieved iterator simply. I.e. I have to get the ...
9
votes
7answers
674 views
Why doesn't IEnumerable<T> implement Add(T)?
Just now find it by chance, Add(T) is defined in ICollection<T>, instead of IEnumerable<T>. And extension methods in Enumerable.cs don't contain Add(T), which I think is really weird. ...
9
votes
5answers
419 views
Why is the ForEach method only for lists
From what I can see, the ForEach method is available only for the List class.
Why is that? I can see no reason for ForEach not to be available to any class implementing the IEnumerable/IEnumerator ...
9
votes
4answers
10k views
When should I use IEnumerator for looping in c#?
I was wondering if there are any times where it's advantageous to use an IEnumerator over a foreach loop for iterating through a collection? For example, is there any time where it would be better to ...