Copies a block of memory from one location to another.

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

Syntax

C#
protected static void CopyMemory(
	byte* dest,
	byte* src,
	int len
)
Visual Basic (Declaration)
Protected Shared Sub CopyMemory ( _
	dest As Byte*, _
	src As Byte*, _
	len As Integer _
)
Visual C++
protected:
static void CopyMemory(
	unsigned char* dest, 
	unsigned char* src, 
	int len
)

Parameters

dest
Type: System..::.Byte *
Pointer to the starting address of the copy destination.
src
Type: System..::.Byte *
Pointer to the starting address of the block of memory to be copied.
len
Type: System..::.Int32
Size of the block of memory to copy, in bytes.

Version Information

FreeImage.NET

Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1

See Also