How can I copy a block of memory?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I have an image in memory as an RGB array, I need to make a fast copy of it? I access the image in usafe mode using the following pointer byte* p = (byte*)(void*)pBuffer; I need another copy of the data so that I can create a new pointer to it and leave my origional data unaffected. Thanks...
-
Hi, I have an image in memory as an RGB array, I need to make a fast copy of it? I access the image in usafe mode using the following pointer byte* p = (byte*)(void*)pBuffer; I need another copy of the data so that I can create a new pointer to it and leave my origional data unaffected. Thanks...