-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Memory_Compare
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Determines whether the first count of bytes of the p1 is equal to the p2.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static bool Compare(
byte* p1,
byte* p2,
int count
)
VB
F#
- p1
- Type: System.Byte
The first buffer to compare. - p2
- Type: System.Byte
The second buffer to compare. - count
- Type: System.Int32
The number of bytes to compare.
Type: Boolean
true if all count bytes of the p1 and p2 are equal; otherwise, false.