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
If you are using .NET 3.5, the resulting array can have ToList() called on it.