I have a generic list of objects in C#, and wish to clone the list. The items within the list are cloneable, but there doesn't seem to be an option to do list.Clone().
Is there an easy way around this?
|
You can use an extension method.
|
|||||
|
|
If your elements are value types, then you can just do:
However, if they are reference types and you want a deep copy (assuming your elements properly implement
Obviously, replace If your element type doesn't support
Personally, I would avoid Any of these options could be wrapped by a method (extension or otherwise). |
|||||||||||||||||
|
This is one way to do it with C# and framework 2.0. Your object require to be [Serializable()]... This method Serialize and unserialize. The goal is to lost all reference and build new one. |
|||||||||
|
|
For a shallow copy, you can instead use the GetRange method of the generic List class.
Quoted from: Generics Recipes |
|||||||
|
|
If you only care about value types... And you know the type:
If you don't know the type before, you'll need a helper function:
The just:
|
|||||||||||
|
|
|||
|
|
|
After a slight modification you can also clone:
|
||||
|
|
|
Use AutoMapper (or whatever mapping lib you prefer) to clone is simple and a lot maintainable. Define your mapping:
Do the magic:
|
|||
|
|
|
||||
|
|
clone()by definition a deep copy? In C# you can pass pointers around easily with =, I thought. – Chris Dec 18 '12 at 20:51