Hi doug,
Yep, List<any_type> copiedList = sourceList.GetRange(0, sourceList.Count);
Regards, Alex
[TechBlog] http://devkids.blogspot.com
> Is there a way to make a copy of a Generic List so that if I remove
> rows from the original they are not removed from the copy?
Doug - 20 Jul 2007 20:36 GMT
> Yep, List<any_type> copiedList = sourceList.GetRange(0, sourceList.Count);
That did it. Thank you Alex!