C# Class ObjectCopier, code

Reference Article http://www.codeproject.com/KB/tips/SerializedObjectCloner.aspx Provides a method for performing a deep copy of an object. Binary Serialization is used to perform the copy.
Show file Open project: shendongnian/code Class Usage Examples

Public Methods

Method Description
Clone ( source ) : T,

Perform a deep Copy of the object.

Method Details

Clone() public static method

Perform a deep Copy of the object.
public static Clone ( source ) : T,
source The object instance to copy.
return T,