Store a long 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 SetLong(
	int byteIndex,
	long value
)
Visual Basic
Public Sub SetLong ( 
	byteIndex As Integer,
	value As Long
)
Visual C++
public:
void SetLong(
	int byteIndex, 
	long long value
)
F#
member SetLong : 
        byteIndex : int * 
        value : int64 -> unit 

Parameters

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

Exceptions

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

See Also