Copies the content of an array to a memory location.
Namespace:
FreeImageAPI
Assembly:
FreeImageNET (in FreeImageNET.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Sub CopyMemory ( _
dest As IntPtr, _
src As Array, _
len As Integer _
) |
Visual C++ |
---|
public:
static void CopyMemory(
IntPtr dest,
Array^ src,
int len
) |
Parameters
- dest
- Type: System..::.IntPtr
A pointer to the starting address of the copied block's destination.
- src
- Type: System..::.Array
An array used as the source of the copy process.
- len
- Type: System..::.Int32
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