Compare this ByteBuffer to an array of byte.

Namespace: BasicCard
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public int CompareTo(
	byte[] data
)
Visual Basic
Public Function CompareTo ( 
	data As Byte()
) As Integer
Visual C++
public:
int CompareTo(
	array<unsigned char>^ data
)
F#
member CompareTo : 
        data : byte[] -> int 

Parameters

data
Type: array<System..::..Byte>[]()[][]
Array to compare with.

Return Value

Type: Int32
-1 if less, 0 if equal or +1 if greater.

See Also