Click here to Skip to main content
15,893,487 members
Everything / Ienumerable

Ienumerable

IEnumerable

Great Reads

by Muraad Nofal
A haskell monad/(applicative)functor like interface in C# that extends IEnumerable.
by Kabwla.Phone
Ha! I get it....I am actually using an adaptation of this technique in production code.But the adapted code required a dept-first search and this original pattern is width-first.Which brings us these new and improved versions:public static List FindControlsWidthFirst( Control...
by Namlak
string blah = string.Join(",", cities.Select(c=> c.Name));
by ASP.NET Community
The iterator pattern’s role is to provide a way to access aggregate objects sequentially without the knowledge of the structure of the aggregate.

Latest Articles

by Mike-MadBadger
This is an alternative for "Pick Your Enumerator & Me.Understand Yield and IEnumerable (C#)"
by Ramesh Bevara
An overview of a helper class to build dynamic order by clause in LINQ query in C#
by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
by Jörgen Andersson
A propertymapping extension for DataReaders

All Articles

Sort by Score

Ienumerable 

14 Dec 2015 by dibley1973
This morning at work a colleague and myself discovered a slightly alarming difference between `IEnumerable.ForEach` and `List.ForEach` when we switched a collection type for a field in a C# ASP.NET MVC project.