http://www.emgu.com
memcpy function
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic 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
)
static member Memcpy :
dest : IntPtr *
src : IntPtr *
len : int -> unit
Parameters
- dest
- Type: SystemIntPtr
the destination of memory copy - src
- Type: SystemIntPtr
the source of memory copy - len
- Type: SystemInt32
the number of bytes to be copied
See Also