Copies a block of memory into an array.
            
    Namespace: 
   FreeImageAPI
    Assembly:
   FreeImageNET (in FreeImageNET.dll)
Syntax
| C# | 
|---|
public static void CopyMemory(
	Array dest,
	void* src,
	long len
)  | 
| Visual Basic (Declaration) | 
|---|
Public Shared Sub CopyMemory ( _
	dest As Array, _
	src As Void*, _
	len As Long _
)  | 
Parameters
- dest
 - Type: System..::.Array
An array used as the destination of the copy process. 
- src
 - Type: 
            System..::.Void
          *
A pointer to the starting address of the block of memory to copy. 
- len
 - Type: System..::.Int64
The size of the block of memory to copy, in bytes. 
Version Information
FreeImage.NET
Supported in: 3.12.0, 3.13.0, 3.13.1
See Also