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
It seems if you have a list of references, the list
List list2 = new List(list1);
does not work.
This should solve your problem:
How do I clone a generic list in C#?