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.

Definition

Namespace: SnapDB.IO.Unmanaged
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public static void Copy(
	IntPtr src,
	IntPtr dest,
	int 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.

See Also