MemoryCopy(Byte*, Byte*, 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(
byte* src,
byte* dest,
int count
)
Visual Basic does not support APIs that consume or return unsafe types.
public:
static void Copy(
unsigned char* src,
unsigned char* dest,
int count
)
JavaScript does not support APIs that consume or return unsafe types.
Parameters
- src Byte*
- A pointer to the source location from which data will be copied.
- dest Byte*
- 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.