Get 24 bit (MSB first) value from this buffer at given byte position.

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

Syntax

C#
public int Get24BitInt(
	int byteIndex
)
Visual Basic
Public Function Get24BitInt ( 
	byteIndex As Integer
) As Integer
Visual C++
public:
int Get24BitInt(
	int byteIndex
)
F#
member Get24BitInt : 
        byteIndex : int -> int 

Parameters

byteIndex
Type: System..::..Int32
Byte position for reading.

Return Value

Type: Int32
24 bit value.

Exceptions

ExceptionCondition
System..::..IndexOutOfRangeExceptionIf index is out of bounds.

See Also