http://www.emgu.com
memcpy function
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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