RtlMoveMemory

[DllImport("ntdll.dll", SetLastError = true)]
public static extern void RtlMoveMemory(
   IntPtr Destination,
   IntPtr Source,
   uint Length
);

Microsoft documentation: Link

Last updated