I noticed in c# there is a method for Lists: CopyTo -> that copies to arrays, is there a nicer way to copy to a new list? problem is, I want to retrieve the list by value to
Have you tried Cloning (Clone()) each item and adding the clone to a new collection?