I want to copy a List of Objects, but i keep getting references between the objects.
List copy = original;
When i change the
You can do this:
List<MyClass> copy = original.ToList();
This would make an element-by-element copy of the list, rather than copying the reference to the list itself.