Microsoft LINQ

From Richard's Wiki
Revision as of 21:06, 12 July 2011 by Rkdrm (Talk | contribs)

Jump to: navigation, search
using System.Collections.Generic;
using System.Linq;
using Model.Entity;
namespace Util
{
   public static class RatesWorksheetSectionExtensions
   {
       public static IEnumerable<RatesWorksheetSection> Flatten(this IEnumerable<RatesWorksheetSection> source)
       {
           return source.Concat(source.SelectMany(p => p.Children.Flatten()));
       }
   }
}