| HelperCopy Method (Array, Int64, Array, Int64, Int64) | 
             Copies source array to destination array.
            
 
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntaxpublic static void Copy(
	Array sourceArray,
	long sourceIndex,
	Array destinationArray,
	long destinationIndex,
	long length
)
Public Shared Sub Copy ( 
	sourceArray As Array,
	sourceIndex As Long,
	destinationArray As Array,
	destinationIndex As Long,
	length As Long
)
public:
static void Copy(
	Array^ sourceArray, 
	long long sourceIndex, 
	Array^ destinationArray, 
	long long destinationIndex, 
	long long length
)
static member Copy : 
        sourceArray : Array * 
        sourceIndex : int64 * 
        destinationArray : Array * 
        destinationIndex : int64 * 
        length : int64 -> unit 
Parameters
- sourceArray
 - Type: SystemArray
Source array - sourceIndex
 - Type: SystemInt64
Source stating index. - destinationArray
 - Type: SystemArray
Destination array - destinationIndex
 - Type: SystemInt64
Destination stating index. - length
 - Type: SystemInt64
No of elements to copy 
See Also