Class ObjectCopy<T>

This class exposes cloning functionality for objects of a specific type.

Inheritance
ObjectCopy<T>
Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
    public class ObjectCopy<T> : ObjectCopy
Type Parameters
NameDescription
T

The type of the object that should be cloned.

Constructors

ObjectCopy()

Declaration
    public ObjectCopy()

Methods

Clone(T)

Creates a deep clone of the object.

Declaration
    public T Clone(T row)
Parameters
TypeNameDescription
Trow

The object that needs to be cloned.

Returns
TypeDescription
T

A deep clone of the provided object.