Copy one array into another. This function copies the contents of one array into a previously allocated array. The arrays must agree in type and size.
Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Sub CopyArray( _ ByVal original As Object, _ ByVal copy As Object _ ) |
C# |
---|
public static void CopyArray( object original, object copy ) |
C++ |
---|
public: static void CopyArray( Object original, Object copy ) |
J# |
---|
public static void CopyArray( object original, object copy ) |
JScript |
---|
public static
function CopyArray( original : Object, copy : Object ) |
Parameters
- original
- The array to be copied.
- copy
- The array to be copied into. This array must already be fully allocated.