Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.
Public Shared Function ToBase64String ( inArray As Byte() ) As String
inArray - An array of 8-bit unsigned integers.
The string representation, in base 64, of the contents of inArray.
Dim base64Decoded as String = "base64 encoded string"
Dim base64Encoded As String
Dim data As Byte()
data = System.Text.ASCIIEncoding.ASCII.GetBytes(base64Decoded)
base64Encoded = System.Convert.ToBase64String(data)