by Paulo Morgado via Paulo Morgado : C# on 8/11/2008 12:47:50 AM
In the past I presented another possible use for the using keyword: as hints on LINQ.
I’ve been giving some thought about this lately and refined my proposal.
var q = from person in personCollection using MyEnumerableExtensions group person by person.LastName into g using new MyOtherComparer() orderby g.Key using new MyComparer() select person;
The above query would be converted to:
var q = MyEnumerableExtensions.OrderBy<string, Person>( MyEnumerableExtensions.GroupBy<string, Person>( personCollection, person => person.LastName, new MyComparer(), ), g => g.Key, mew MyOtherComparer() );
What do you think of this?
Original Post: More On Another Way For Using The “using” Keyword
The content of the postings is owned by the respective author. CSharpFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on CSharpFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.