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, int len )  | 
| Visual Basic (Declaration) | 
|---|
Public Shared Sub CopyMemory ( _ dest As Array, _ src As Array, _ len As Integer _ )  | 
| Visual C++ | 
|---|
public: static void CopyMemory( Array^ dest, Array^ src, int 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..::.Int32
The size of the content to copy, in bytes.