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