IEnumerable, and its generic counterpart IEnumerable<T> are .NET interfaces for iterating (or enumerating) through a collection of items.
I have a class that implements IEnumerable, but doesn't implement IEnumerable<T>. I can't change this class, and …
.net linq ienumerableI am wondering what the difference between IQueryable, List, IEnumerator is and when I should use each one? For instance …
c# linq list ienumerable iqueryableI would like to do something like this in .NET 3.5. What's the quickest way? IEnumerable<DataRow> collection = TypedDataSet.…
c# .net linq .net-3.5 ienumerableI have an IEnumerable of a custom type. (That I've gotten from a SelectMany) I also have an item (myItem) …
c# linq ienumerableWhen calling Any() on a null object, it throws an ArgumentNullException in C#. If the object is null, there definitely …
c# .net object ienumerableI have an enumerator like this IEnumerable<System.Windows.Documents.FixedPage> page; How can I add a page (…
c# ienumerable addOne of the extension methods on IEnumerable<T> is .AsEnumerable(). This method converts the enumerable object it was …
c# linq ienumerableWhen I'm writing my DAL or other code that returns a set of items, should I always make my return …
c# ienumerableGiven two IEnumerables of the same size, how can I convert it to a Dictionary using Linq? IEnumerable<string&…
c# .net linq dictionary ienumerableFor testing purposes, I need to create an IEnumerable<KeyValuePair<string, string>> object with the following …
c# .net ienumerable keyvaluepair