memcpy function

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 2.2.0.1010 (2.2.0.1010)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void memcpy(
	IntPtr dest,
	IntPtr src,
	int len
)
Public Shared Sub memcpy ( _
	dest As IntPtr, _
	src As IntPtr, _
	len As Integer _
)
public:
static void memcpy(
	IntPtr dest, 
	IntPtr src, 
	int len
)

Parameters

dest
IntPtr
the destination of memory copy
src
IntPtr
the source of memory copy
len
Int32
the number of bytes to be copied

See Also