I have a method who merge two lists. The two merged lists are lists of subtypes objects of the returned list.

So Sub1 and Sub2 types are subtypes from Sup1 type.

Here is my code

var listSub1 = new List<Sub1>(); //With some content added..
var listSub2 = new List<Sub2>(); //With content too..  
var listToReturn = new List<Sup1>();
listToReturn.AddRange(listSub1.Select(item => item as Sup1).ToList());
listToReturn.AddRange(listSub2.Select(item => item as Sup1).ToList());

return listeToReturn;

It is working fine but I wonder if it is the best way to merge and cast the lists..

Thanks

Edit: By "merging" I mean "Allowing duplicates" sorry for missing information ..

link|improve this question

LINQ has a Cast<T> method which does the same thing, but is more readable and imho elegant (listSub1.Cast<Sup1>()). return listSub1.Cast<Sup1>().Concat(listSub2.Cast<Sup1>()).ToList(); would be what I'd use. – Morawski Dec 14 '11 at 10:29
@Morawski syntax error. apologies. I corrected it – bAN Dec 14 '11 at 10:30
ok so I edited this part out of my comment. – Morawski Dec 14 '11 at 10:31
feedback

6 Answers

up vote 3 down vote accepted

you could write

var newList = 
  listSub1.Cast<Sup1>()
  .Concat(listSub2.Cast<Sup1>()).ToList();

Note that Union is not correct to be used, since it will make sure that objects that are "equal" will come out only once.

link|improve this answer
It depends what he means by 'merge' – Guillaume86 Dec 14 '11 at 10:34
So Union() don't allows "duplicates" i the list? But Concat yes? – bAN Dec 14 '11 at 10:34
correct, Union is meant as in set theory union – flq Dec 14 '11 at 10:37
yes you're right – Guillaume86 Dec 14 '11 at 10:38
Also Union is not O(n). – Saeed Amiri Dec 14 '11 at 10:52
show 3 more comments
feedback
return listSub1.Cast<Sup1>().Concat(list2.Cast<Sup1>()).ToList()
link|improve this answer
feedback
var result = listSub1.AddRang(listSub2 ).Cast<Sup1>().ToList()
link|improve this answer
has a side effect that OPs code does not. it changes listSub1. What if he needs the original afterwards? – Rune FS Dec 14 '11 at 10:37
@RuneFS , You are right in general, but if you see the OPs signature, seems both sub list will be created in one fuction, and there is no need to them after return of function. – Saeed Amiri Dec 14 '11 at 10:49
If they were indeed created then why create two? if they are on the other hand returned from a different method (not new'ed) then you're reasoning no longer holds. – Rune FS Dec 14 '11 at 11:01
@Rune FS, these all depends to OPs situation and this was my observation from sample code, but I suggested to use AddRange (native list method) to have a faster run time, nothing else. – Saeed Amiri Dec 14 '11 at 12:21
feedback

Why not just use LINQ's Union? That should to the trick.

link|improve this answer
because it does not produce the same result. Duplicates are removed. – Rune FS Dec 14 '11 at 10:36
feedback

Assuming I don't have to keep binary compatibility with an older released version, I'd redefine the return type as IEnumerable<Sub1> and code it as:

return listSub1.Concat(listSub2);

If a caller really needs a list, it can call .ToList() itself, but a caller that doesn't need a list (e.g. it's just going to foreach through it all) needn't suffer the delay and memory use of .ToList().

Using .ToList() only when needed is a micro-opt as a single change, but as a coding habit can begin to add up significantly.

link|improve this answer
feedback

you can do with linq:

var listToReturn = listSub1.Cast<Sup1>().Concat(listSub2).ToList();

edit: to match the edited question

link|improve this answer
that behaves differently. The .Cast<> will throw if it can't cast OP simply "inserts" a null. – Rune FS Dec 14 '11 at 10:30
Yes but the question says: So Sub1 and Sub2 types are subtypes from Sup1 type so it shouldn't be a problem – Guillaume86 Dec 14 '11 at 10:31
and union does not produce the concatenation of the two lists but the set union. That is duplicates are removed – Rune FS Dec 14 '11 at 10:35
'the best way to merge and cast the lists..', so it depends on your interpretation of the merge word – Guillaume86 Dec 14 '11 at 10:38
1  
I qoute "is working fine". OPs code does not remove duplicates and is working fine – Rune FS Dec 14 '11 at 10:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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