Version: 2019.1

UnsafeUtility.MemCmp(IntPtr,IntPtr,ulong)

Switch to Manual

Parameters

ptr1Pointer to the first memory buffer.
ptr2Pointer to the second memory buffer to compare the first one to.
sizeNumber of bytes to compare.

Returns

void 0 if the contents are identical, non-zero otherwise.

Description

Checks to see whether two memory regions are identical or not by comparing a specified memory region in the first given memory buffer with the same region in the second given memory buffer.

The memory regions may overlap. Returns 0 if the contents of the two regions are identical.