Converts an array of bytes in the corresponding string using UTF8 encoding.
Namespace: LLCryptoLib.UtilsAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public static string Bytes2Text(
byte[] ibytes
) |
Visual Basic |
---|
Public Shared Function Bytes2Text ( _
ibytes As Byte() _
) As String |
Visual C++ |
---|
public:
static String^ Bytes2Text(
array<unsigned char>^ ibytes
) |
Parameters
- ibytes
- Type: array<System..::..Byte>[]()[][]
The input bytes.
Return Value
The string corresponding from UTF8 byte conversion
See Also