CopyMemory

[DllImport("urlmon.dll", EntryPoint = "CopyMemory", SetLastError = false)]
public static extern void CopyMemory(
   IntPtr dest,
   IntPtr src,
   uint count
);

Microsoft documentation: Link

Last updated