Re: arraylist copy
- From: Marcie Jones <marciejones@xxxxxxxxx>
- Date: Fri, 08 Apr 2005 12:41:04 -0400
Try the .Clone() method of the ArrayList.
Marcie
On 8 Apr 2005 09:24:51 -0700, "Sam" <samuel.berthelot@xxxxxxxx> wrote:
>Hi,
>
>I have the following code :
>
>Dim rNodeList As New ArrayList
>Dim rNodeListNew As New ArrayList
>
>For iCntr As Integer = 0 To tvRelations.Nodes.Count - 1
> rNodeList.Add(tvRelations.Nodes(iCntr).Text)
>Next
>
>rNodeListNew = rNodeList
>rNodeList.RemoveAt(2)
>
>after I've filled rNodeList, it contains 8 elements.
>So does rNodeListNew
>
>But when I remove the element 2 of rNodeList, it is also removed in
>rNodeListNew. Why ? Do they both point to the same memory location ?
>How can I prevent that in vb ?
>
>Thx
.
- Follow-Ups:
- Re: arraylist copy
- From: Joseph MCAD
- Re: arraylist copy
- References:
- arraylist copy
- From: Sam
- arraylist copy
- Prev by Date: Re: arraylist copy
- Next by Date: Re: How to remove a window-Icon
- Previous by thread: Re: arraylist copy
- Next by thread: Re: arraylist copy
- Index(es):
Relevant Pages
|