Convert a hexadecimal string into a byte array.

Namespace: Classless.Hasher.Utilities
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
public static byte[] HexadecimalToByte(
	string data
)
Visual Basic
Public Shared Function HexadecimalToByte ( _
	data As String _
) As Byte()
Visual C++
public:
static array<unsigned char>^ HexadecimalToByte(
	String^ data
)

Parameters

data
Type: System..::..String
The hexadecimal string to convert.

Return Value

The hexadecimal string represented as a byte array.

See Also