Get int (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 GetInt(
	int byteIndex
)
Visual Basic
Public Function GetInt ( 
	byteIndex As Integer
) As Integer
Visual C++
public:
int GetInt(
	int byteIndex
)
F#
member GetInt : 
        byteIndex : int -> int 

Parameters

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

Return Value

Type: Int32
Int value.

Exceptions

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

See Also