Atom.NET documentation

Utils.Base64Decode Method (Char[], Int32, Int32)

Base64-decodes the given byte array from the given offset to "len" number of bytes.

[Visual Basic]
Overloads Public Shared Function Base64Decode( _
   ByVal array As Char(), _
   ByVal offset As Integer, _
   ByVal length As Integer _
) As Byte()
[C#]
public static byte[] Base64Decode(
   char[] array,
   int offset,
   int length
);

Parameters

array
The byte array to decode.
offset
The offset from which the decoding starts.
length
The number of bytes from the offset to decode.

Return Value

A base64-encoded array of bytes.

See Also

Utils Class | Atom.Utils Namespace | Utils.Base64Decode Overload List