[ LINQ via C# series ] It is obvious the Where(), OrderBy(), Select() can be invoked fluently: int [] source = new int [] { 0, 1, -2, 3, 24, 6, 3 }; var results = source.Where(item => item > 0 && item < 10) .OrderBy(item => item) .Select(item => item.ToString( CultureInfo .InvariantCulture...
Posted to
Dixin's Blog
(Weblog)
by
Dixin
on
03-08-2010, 12:00 AM
Filed under: .NET, C#, JavaScript, jQuery, LINQ, LINQ via C# Series, LINQ to Objects, Functional Programming