memcpy

[DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
public static extern IntPtr memcpy(
   IntPtr dest,
   IntPtr src,
   size_t count
);

Microsoft documentation: Link

Last updated