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 ..
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