I have a 5 lists with the same objects in them. I just want to combine them all with there properties intact into one bigger list.
I have thought of a way to do it, but I think there is better ways.
List<object> blah = new List<object>
foreach(object item in ObjectList1)
{
blah.Add(item);
}
If you know a better way to do this let me know, Thanks in Advance!
1 Answer