Copies the content of an array to a memory location.
Namespace:
FreeImageAPI
Assembly:
FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public static void CopyMemory(
void* dest,
Array src,
long len
) |
Visual Basic (Declaration) |
---|
Public Shared Sub CopyMemory ( _
dest As Void*, _
src As Array, _
len As Long _
) |
Parameters
- dest
- Type:
System..::.Void
*
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..::.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