New posts in ienumerable

What is the difference between IEnumerator and IEnumerable? [duplicate]

Should I always return IEnumerable<T> instead of IList<T>?

Convert from List into IEnumerable format

What is the purpose of AsQueryable()?

Pair-wise iteration in C# or sliding window enumerator

Why does this string extension method not throw an exception?

Check if one IEnumerable contains all elements of another IEnumerable

C# Why IEnumerable and IEnumerable.ToList() print their result is difference?

Correct, idiomatic way to use custom editor templates with IEnumerable models in ASP.NET MVC

How to loop through IEnumerable in batches [duplicate]

ReadOnlyCollection or IEnumerable for exposing member collections?

ICollection<T> Vs List<T> in Entity Framework

IList vs IEnumerable for Collections on Entities

What's the difference between IQueryable and IEnumerable [duplicate]

How to get the index of an element in an IEnumerable?

IEnumerable<char> to string [duplicate]

How to check if IEnumerable is null or empty?

Optimal LINQ query to get a random sub collection - Shuffle

Return all enumerables with yield return at once; without looping through

Recreating a Dictionary from an IEnumerable<KeyValuePair<>>