Store a int value in this buffer at given byte position. If index is above current length then unused bytes are set to 0, value is appended at specified position and length is increased.

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

Syntax

C#
public void SetInt(
	int byteIndex,
	int value
)
Visual Basic
Public Sub SetInt ( 
	byteIndex As Integer,
	value As Integer
)
Visual C++
public:
void SetInt(
	int byteIndex, 
	int value
)
F#
member SetInt : 
        byteIndex : int * 
        value : int -> unit 

Parameters

byteIndex
Type: System..::..Int32
Byte position for storing.
value
Type: System..::..Int32
Value to store.

Exceptions

ExceptionCondition
System..::..IndexOutOfRangeExceptionIf capacity is exceeded.

See Also