I'd like to use a for each loop to iterate over two Collections. My first idea was:
foreach (object o in a.Concat(b)) {
o.DoSomething(); }
But the problem is, not all Collections support Concat. So what do to?
|
Some legacy collection types implement only |
|||||||||||
|
|
Instead of ...
Why not just ?
If you really want them to be both in the same list, construct a new list and add them together before you start processing. |
|||||||||||||||
|
SelectManyis not the solution here. ByConcatnot being available, you should deduce he is not dealing withIEnumerable<T>.SelectManywill not be initially available, either. – user414076 Feb 11 '11 at 16:31