Convert: FromBase64CharArray

FromBase64CharArray

Decodes a base-64 character array to a byte array. The Offset and length specify a subset of the character array to be decoded.



 Public Function FromBase64CharArray(
	  ByRef InArray ( ) As Integer,
	  ByVal offset As Long,
	  ByVal Length As Long ) As Byte ( )

Parameters

InArray
[ByRef] Integer. A base-64 character array to be decoded to a byte array.
offset
[ByVal] Long. The character within the character array to begin decoding.
Length
[ByVal] Long. The number of characters to be decoded into the byte array.

Return Values

Byte() -  A byte array that has been decoded from a base-64 character array.

Remarks

See Also

Project VBCorLib Overview Class Convert Overview Convert Properties Convert Methods FromBase64String