Convert an array of bytes into an hexadecimal string

Namespace: LLCryptoLib.Crypto
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

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

Parameters

arrBytes
Type: array<System..::..Byte>[]()[][]
Array of bytes to convert

Return Value

Hexadecimal String

See Also