Deep copy values in the first array into the second

Namespace:  NHibernate.Type
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Sub DeepCopy ( _
	values As Object(), _
	types As IType(), _
	copy As Boolean(), _
	target As Object() _
)
C#
public static void DeepCopy(
	Object[] values,
	IType[] types,
	bool[] copy,
	Object[] target
)
Visual C++
public:
static void DeepCopy(
	array<Object^>^ values, 
	array<IType^>^ types, 
	array<bool>^ copy, 
	array<Object^>^ target
)
JavaScript
NHibernate.Type.TypeFactory.deepCopy = function(values, types, copy, target);

Parameters

values
Type: array< System..::.Object >[]()[]
types
Type: array< NHibernate.Type..::.IType >[]()[]
copy
Type: array< System..::.Boolean >[]()[]
target
Type: array< System..::.Object >[]()[]

See Also