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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top