Click or drag to resize

BufferSegmentEquals Method (Byte, Int32, Byte, Int32, Int32)

Returns true if length portion of the two buffers have the same content.

Namespace:  Demo3D.IO
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public static bool Equals(
	byte[] a,
	int aOffset,
	byte[] b,
	int bOffset,
	int length
)

Parameters

a
Type: SystemByte
The buffer to compare.
aOffset
Type: SystemInt32
The offset into a to compare.
b
Type: SystemByte
The buffer to compare.
bOffset
Type: SystemInt32
The offset into b to compare.
length
Type: SystemInt32
The length to compare.

Return Value

Type: Boolean
True if the two buffers have the same content.
See Also