MemoryCopy(IntPtr, IntPtr, Int32) Method
Does a safe copy of data from one location to another.
A safe copy allows for the source and destination to overlap.
Namespace: SnapDB.IO.UnmanagedAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public static void Copy(
IntPtr src,
IntPtr dest,
int count
)
Public Shared Sub Copy (
src As IntPtr,
dest As IntPtr,
count As Integer
)
public:
static void Copy(
IntPtr src,
IntPtr dest,
int count
)
SnapDB.IO.Unmanaged.Memory.Copy = function(src, dest, count);
Parameters
- src IntPtr
- A pointer to the source location from which data will be copied.
- dest IntPtr
- A pointer to the destination location where data will be copied to.
- count Int32
- The number of bytes to copy from the source to the destination.