Answers
Jan 05, 2007 - 06:30 AM
ArrayList al1 = new ArrayList();
ArrayList al2 = new ArrayList();
al1.AddRange(al2);
Remember that since arraylists aren't sets, dupes won't be removed.
ArrayList al2 = new ArrayList();
al1.AddRange(al2);
Remember that since arraylists aren't sets, dupes won't be removed.
Jan 05, 2007 - 11:29 AM
thanks, Sergio, I didn't know about that...
Add New Comment