BufferSegmentEquals(Byte, Int32, Byte, Int32, Int32) Method |
Returns true if length portion of the two buffers have the same content.
Namespace: Demo3D.IOAssembly: Demo3D.IO (in Demo3D.IO.dll) Version: 19.00.00
Syntaxpublic static bool Equals(
byte[] a,
int aOffset,
byte[] b,
int bOffset,
int length
)
Parameters
- a Byte
- The buffer to compare.
- aOffset Int32
- The offset into a to compare.
- b Byte
- The buffer to compare.
- bOffset Int32
- The offset into b to compare.
- length Int32
- The length to compare.
Return Value
BooleanTrue if the two buffers have the same content.
See Also