BinaryEquals Method (Byte, Int32, Byte, Int32, Int32) |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Compare two binary regions, testing for equality.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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