FromBase64CharArray()

Convert::FromBase64CharArray(const ArrayPtr<char_t>&, int, int) method

Decodes base-64 encoded data represented as a range in the array of Unicode characters.

static ArrayPtr<uint8_t> System::Convert::FromBase64CharArray(const ArrayPtr<char_t> &in_array, int offset, int length)

Arguments

ParameterTypeDescription
in_arrayconst ArrayPtr<char_t>&The array containing the data to decode
offsetintThe position in the input array at which the range to decode begins
lengthintThe length of the range to decode

Return Value

A byte-array containing the decoded data

See Also