Compare this ByteBuffer to another ByteBuffer.

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

Syntax

C#
public int CompareTo(
	ByteBuffer data
)
Visual Basic
Public Function CompareTo ( 
	data As ByteBuffer
) As Integer
Visual C++
public:
int CompareTo(
	ByteBuffer^ data
)
F#
member CompareTo : 
        data : ByteBuffer -> int 

Parameters

data
Type: BasicCard..::..ByteBuffer
ByteBuffer to compare with.

Return Value

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

See Also