Read multiple bytes from current position.

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

Syntax

C#
public virtual byte[] FetchBytes(
	int length
)
Visual Basic
Public Overridable Function FetchBytes ( 
	length As Integer
) As Byte()
Visual C++
public:
virtual array<unsigned char>^ FetchBytes(
	int length
)
F#
abstract FetchBytes : 
        length : int -> byte[] 
override FetchBytes : 
        length : int -> byte[] 

Parameters

length
Type: System..::..Int32
Number of bytes to read.

Return Value

Type: array<Byte>[]()[][]
Read bytes.

See Also