New posts in ienumerable

Difference between IEnumerable and IEnumerable<T>?

Convert DataTable to IEnumerable<T>

Convert IAsyncEnumerable to List

Collection was modified; enumeration may not execute error when removing a ListItem from a LIstBox

How to iterate through two IEnumerables simultaneously?

What should I use an IEnumerable or IList? [duplicate]

Enumerating Collections that are not inherently IEnumerable?

Why use .AsEnumerable() rather than casting to IEnumerable<T>?

Why doesn't Any() work on a c# null object

Why does IEnumerable<T>.ToList<T>() return List<T> instead of IList<T>?

Does C# have IsNullOrEmpty for List/IEnumerable?

Remove an item from an IEnumerable<T> collection

Params IEnumerable<T> c#

what is IEnumerable in .net

Convert DataRowCollection to IEnumerable<T>

Pass a lambda expression in place of IComparer or IEqualityComparer or any single-method interface?

What's your favorite LINQ to Objects operator which is not built-in? [closed]

Performance of nested yield in a tree

Difference between IEnumerable Count() and Length

Do I need to consider disposing of any IEnumerable<T> I use?