Reverse function of HexString. Converts hexadecimal dump string into bytes.

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

Syntax

C#
public static byte[] HexBytes(
	string str
)
Visual Basic
Public Shared Function HexBytes ( 
	str As String
) As Byte()
Visual C++
public:
static array<unsigned char>^ HexBytes(
	String^ str
)
F#
static member HexBytes : 
        str : string -> byte[] 

Parameters

str
Type: System..::..String
hexadecimal dump as String

Return Value

Type: array<Byte>[]()[][]
content as array of bytes

See Also