I have an IEnumerable<T> and an IEnumerable<U> that I want merged into an IEnumerable<KeyValuePair<T, U>>, where the indexes of the elements joined together in the KeyValuePair are the same. Note I'm not using IList, so I don't have a count or an index for the items I'm merging. How best can I accomplish this? I would prefer a LINQ answer, but anything that gets the job done in an elegant fashion would work as well.
|
|
|
|
|
|
|
I use these extension methods:
EDIT: after the comments I'm obliged to clarify and fix some things:
|
||||||||||
|
|
|
Think about what you're asking a bit more closely here: You want to combine two IEnumerables in which "the indexes of the elements joined together in the KeyValuePair are the same", but you "don't have a count or an index for the items I'm merging". There's no guarantee your IEnumerables are even sorted or unsorted. There's no correlation between your two IEnumerable objects, so how can you expect to correlate them? |
||||||||||
|
|
|
I would use something along the lines of -
This should work correctly, and cleanup properly afterwards. |
||||
|
|
|
Still another from Eric Lippert: link text |
||
|
|
|
Untested, but should work:
|
||
|
|
|
|
Look at nextension:
|
||
|
|
|
|
The MSDN has the following Custom Sequence Operators example. And Welbog is right; if you have no index on the underlying data you have no guarantee that the operation does what you exspect. |
||
|
|
|
|
Another implementation from the functional-dotnet project by Alexey Romanov:
Replace |
||
|
|
|
|
JaredPar has a library with a lot of useful stuff in it, include |
|||
|
|
