Combining List<>'s in .NET

Posted by Maxim Z. on Stack Overflow See other posts from Stack Overflow or by Maxim Z.
Published on 2010-04-04T04:18:15Z Indexed on 2010/04/04 4:23 UTC
Read the original article Hit count: 495

Filed under:
|
|
|
|

I have a few List<> objects that hold many objects of one specific type. My goal is to combine these List<>'s into one List<>. Of course, I could just loop through each List's contents and add them into one final List, but is there a more efficient way?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET