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

Parameters

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

Return Value

Type: Int16
Short value.

Exceptions

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

See Also