I assume you are meaning a deep copy where the entire collection becomes a
new collection. If so, you can iterate through the collection, as it uses
IList. You can then use Add() to add to your new collection. There is no need
to pull into an array and then a collection.

Signature
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
***************************
Think Outside the Box!
***************************
> Hi all,
>
[quoted text clipped - 9 lines]
> Cheers,
> Diego
Diego Barros - 18 Jul 2005 00:30 GMT
Hi,
Thanks for the reply. I thought it would have something as straightforward,
and as logical, as source.Copy(destination) or something like that. Thanks
anyway, appreciate your reply.
Cheers,
Diego
> I assume you are meaning a deep copy where the entire collection becomes a
> new collection. If so, you can iterate through the collection, as it uses
> IList. You can then use Add() to add to your new collection. There is no need
> to pull into an array and then a collection.