| AES256BytesToString Method |
Generates a string representation of an array of bytes.
Namespace:
Galactic.Cryptography
Assembly:
Galactic.Cryptography (in Galactic.Cryptography.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static string BytesToString(
byte[] bytes
)
Public Shared Function BytesToString (
bytes As Byte()
) As String
public:
static String^ BytesToString(
array<unsigned char>^ bytes
)
static member BytesToString :
bytes : byte[] -> string
Parameters
- bytes
- Type: SystemByte
The bytes to convert.
Return Value
Type:
StringA string representation of an array of bytes, or null if
the string is too large to convert successfully.
See Also