vote up 2 vote down star

Does Enumerable.GroupBy from LINQ to Objects preserve order of elements in the groups?

flag

1 Answer

vote up 4 vote down check

Found answer in MSDN: yes.

The IGrouping objects are yielded in an order based on the order of the elements in source that produced the first key of each IGrouping. Elements in a grouping are yielded in the order they appear in source.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.