Convert an array of bytes to a Base64 representation of bytes

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

Syntax

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

Parameters

inBytes
Type: array<System..::..Byte>[]()[][]
Input array of bytes

Return Value

Base 64 representation of bytes

See Also