Click here to Skip to main content
15,867,297 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 

18 Sep 2013 by Muraad Nofal
A haskell monad/(applicative)functor like interface in C# that extends IEnumerable.
19 Oct 2013 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.
14 Jan 2014 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. The
2 Nov 2023 by Mike-MadBadger
This is an alternative for "Pick Your Enumerator & Me.Understand Yield and IEnumerable (C#)"
25 Jan 2016 by GravityPhazer
This article demonstrates how you can simply enumerate any generic tree depth-first as well as breadth-first using the described construct. Trees can be serialized binary (using the BinaryFormatter), custom binary and as XML.
26 Aug 2018 by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
26 Jan 2016 by Jörgen Andersson
A propertymapping extension for DataReaders
5 Sep 2012 by interopper
How to make a thin-as-possible .NET IEnumerable-wrapper around MFC list classes.
21 Apr 2013 by Mike-MadBadger
Using multiple enumerators and implementing IEnumerable with Yield or IEnumerator.