IEnumerable, and its generic counterpart IEnumerable<T> are .NET interfaces for iterating (or enumerating) through a collection of items.
I get this error message: The type arguments for method 'System.Linq.Enumerable.Select<TSource,TResult>(System.Collections.…
c# select ienumerable inferred-typeIs there a problem with using IEnumerable<T> as a return type? FxCop complains about returning List<…
c# collections ienumerable enumerationI have the following code: private static string FindAppointmentsAsXmlString(CalendarView calendar, ExchangeService serv) { FindItemsResults<Appointment> appointments = serv.FindAppointments(…
c# serialization ienumerable add exchangewebservicesI wrote this extension method (which compiles): public static IEnumerable<J> Flatten<T, J>(this IEnumerable&…
c# generics ienumerable nested-genericsAs per the title, is it possible to declare type-negating constraints in c# 4 ?
c# .net generics ienumerableCan I use yield return when the return type is an IGrouping<TKey, TElement> or an IDictionary<…
c# .net ienumerableI need an extension method which will shuffle an IEnumerable<T>. It can also take an int to …
c# ienumerable shuffleWhat is the difference between IEnumerable and IEnumerable<T>? I've seen many framework classes implementing both these interfaces, …
c# ienumerable generics ilist icollectionPossible Duplicate: Yield In VB.NET In C#, when writing a function that returns an IEnumerble<>, you can …
vb.net ienumerable iterator yield-returnIf I have an IEnumerable like: string[] items = new string[] { "a", "b", "c", "d" }; I would like to loop thru …
c# .net iterator ienumerable