vote up 1 vote down star

In .NET (VB), how can I take all of the items in one collection, and add them to a second collection (without losing pre-existing items in the second collection)? I'm looking for something a little more efficient than this:

For Each item As Host In hostCollection1
    hostCollection2.Add(item)
Next

My collections are generic collections, inherited from the base class -- Collection(Of )

flag

10 Answers

vote up 8 vote down check

You can use AddRange: hostCollection2.AddRange(hostCollection1).

link|flag
vote up 1 vote down

I know you're asking for VB, but in C# you can just use the constructor of the collection to initialize it with any IEnumerable. For example:

List<string> list1 = new List<string>();
list1.Add("Hello");
List<string> list2 = new List<string>(list1);

Perhaps the same kind of thing exists in VB.

link|flag
But will pre-existing items in list2 be lost? I'm trying to add to the second collection, not exactly duplicate the first collection. – Matt Hanson Sep 29 '08 at 3:36
Oh sorry, I misunderstood. In that case, I would use the AddRange method on my list2 object. – Ben Hoffstein Sep 29 '08 at 3:42
You just added to your post that you are using the base Collection class. In this case, none of the AddRange solutions are going to work. If you are using .NET 3.5, we could go the extension method route... – Ben Hoffstein Sep 29 '08 at 3:51
I am using 3.5, but I didn't even know about extension methods. I don't think it's the route I'm going to take, but definitely pretty cool! Thanks! – Matt Hanson Sep 29 '08 at 8:45
vote up 1 vote down

Ben's solution does exist for VB.Net:

Dim collection As IEnumerable(Of T)    
Dim instance As New List(collection)

Here is the linked documentation.

However, one thing I would be concerned with is whether or not it does a shallow copy or a deep copy.

link|flag
vote up 1 vote down

Don't forget that you will be getting a reference and not a copy if you initialize your List2 to List1. You will still have one set of strings unless you do a deep clone.

link|flag
vote up 0 vote down

Array.Copy may solve your problem.

link|flag
vote up 0 vote down

List.CopyTo(T[]); maybe?

http://msdn.microsoft.com/en-us/library/t69dktcd.aspx

link|flag
vote up 0 vote down

I always use the List<T>.AddRange(otherList<T>) function. Again, if this is a list of objects, they will be references the same thing.

You have not specified what sort of collection though, AddRange doesn't exist in CollectionBase inherited objects

link|flag
vote up 0 vote down

Hi Matt,

Unless you want both collections to modify the same set of objects, then each object is going to have to be copied to the Heap. Maybe you can describe your scenario of how this is impacting your performance and we can find a good solution.

link|flag
vote up 0 vote down

This is available when one use an IList. But AddRange method is not available in Collection. I thought of casting Collection to List, but it is not possible.

Regards, Kangkan

link|flag
vote up -1 vote down

The AddRange method is not available in c#. Any solution for c# in such case?

Regards, Kangkan

link|flag
If you have a follow up questions, it's better to post it as a new question than as an answer. In the top right is an "Ask Question" button to do so. You of course can always link back to this page if you need to for reference. (This would also apply to the other questions you posted as answers before) – sth Aug 24 at 10:36

Your Answer

Get an OpenID
or

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