FastDeepCloner is very fast portable library, This is a C# cross platform library that is used to deep clone objects, whether they are serializable or not. It intends to be much faster than the normal binary serialization method of deep cloning objects.
This is a C# based .NET 4 library that is used to deep clone objects, whether they are serializable or not.
It intends to be much faster than the normal binary serialization method of deep cloning objects.
This is basically just slightly tidied up code from...
More information
NClone is a library that takes care of cloning .NET objects and object trees. It saves you from writing boilerplate and error-prone Clone methods and does not harm your application performance.
A small deep clone tool,can fast deep clone objects graph,do not need to add anything to use it,can support the general objects,could not support pointer etc. .net4.5.2
Object Extensions can be used to:
(1) Create flattend structures
(2) Compare or Combine two objects
(3) Get or Set member values
(4) Deep Clone
(5) Save (text file,S3) object graph
(6) Get metadata
(7) Get type information
(8) Create instance
(9) Copy to another object
(10) Snapshots
Visit the...
More information