Convert a hexadecimal string into a byte array.

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

Syntax

C#
public static byte[] HexadecimalToByte(
	string data
)
Visual Basic (Declaration)
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