BinaryEquals Method (Byte, Int32, Byte, Int32, Int32) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Compare two binary regions, testing for equality.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic static bool Equals(
byte[] ab1,
int of1,
byte[] ab2,
int of2,
int cb
)
Parameters
- ab1
- Type: SystemByte
The byte array containing the first binary region to compare.
- of1
- Type: SystemInt32
The offset of the binary region within ab1.
- ab2
- Type: SystemByte
The byte array containing the second binary region to compare.
- of2
- Type: SystemInt32
The offset of the binary region within ab2.
- cb
- Type: SystemInt32
The size of the binary regions, which is the number of bytes to
compare.
Return Value
Type:
Booleantrue iff the two specified binary regions are identical.
See Also