How to move one Arraylist data to another arraylist. I have tried for many option but the output is in the form of array not arraylist
|
|
|||
|
|
|
|
||
|
|
|
|
? |
||
|
|
|
|
Use the constructor of the ArrayList that takes an ICollection as a parameter. Most of the collections have this constructor.
|
||
|
|
|
|
First - unless you are on .NET 1.1, you should a avoid When you say "copy" - do you want to replace, append, or create new? For append (using
To replace, add a
To create new:
|
||
|
|
|
|
If you use ArrayList newList = new ArrayList(oldList); and the oldlist holds reference values (like classes) will they be copied or will the reference be copied? |
||
|
|
http://msdn.microsoft.com/en-us/library/system.collections.arraylist.addrange.aspx shameless copy/paste from the above link
Other than that I think Marc Gravell is spot on ;) |
||
|
|
|
|
I found the answer for moving up the datas Firstarray.AddRange(SecondArrary) |
||
|
|
