Copies the content of one array into another array.
Namespace:
FreeImageAPIAssembly: FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public static void CopyMemory( Array dest, Array src, long len ) |
Visual Basic (Declaration) |
---|
Public Shared Sub CopyMemory ( _ dest As Array, _ src As Array, _ len As Long _ ) |
Visual C++ |
---|
public: static void CopyMemory( Array^ dest, Array^ src, long long len ) |
Parameters
- dest
- Type: System..::.Array
An array used as the destination of the copy process.
- src
- Type: System..::.Array
An array used as the source of the copy process.
- len
- Type: System..::.Int64
The size of the content to copy, in bytes.