IntPtr to IntPtr Copy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to copy from IntPtr to IntPtr in .NET? Marshal.Copy can't. I don't want
to convert one of the IntPtr to managed byte array, because my application is
live video related. It is CPU and Memory intensive.

THKS
 
How to copy from IntPtr to IntPtr in .NET? Marshal.Copy can't. I don't want
to convert one of the IntPtr to managed byte array, because my application is
live video related. It is CPU and Memory intensive.


PInvoke to kernel32 : RtlMoveMemory
oder use Managed C++ .NET.
 
Back
Top