Copies the content of an array to a memory location.

Namespace:  FreeImageAPI
Assembly:  FreeImageNET (in FreeImageNET.dll)

Syntax

C#
public static void CopyMemory(
	IntPtr dest,
	Array src,
	long len
)
Visual Basic (Declaration)
Public Shared Sub CopyMemory ( _
	dest As IntPtr, _
	src As Array, _
	len As Long _
)
Visual C++
public:
static void CopyMemory(
	IntPtr dest, 
	Array^ src, 
	long long 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..::.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