Bridge

Convert..::..ToBase64CharArray Method (array<Byte>[]()[][], Int32, Int32, array<Char>[]()[][], Int32)

Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public static int ToBase64CharArray(
	byte[] inArray,
	int offsetIn,
	int length,
	char[] outArray,
	int offsetOut
)
<TemplateAttribute> _
Public Shared Function ToBase64CharArray ( _
	inArray As Byte(), _
	offsetIn As Integer, _
	length As Integer, _
	outArray As Char(), _
	offsetOut As Integer _
) As Integer
[TemplateAttribute]
public:
static int^ ToBase64CharArray(
	array<unsigned char^>^ inArray, 
	int^ offsetIn, 
	int^ length, 
	array<wchar_t^>^ outArray, 
	int^ offsetOut
)

Parameters

inArray
Type: array<System..::..Byte>[]()[][]
offsetIn
Type: System..::..Int32
length
Type: System..::..Int32
outArray
Type: array<System..::..Char>[]()[][]
offsetOut
Type: System..::..Int32

Return Value

A 32-bit signed integer containing the number of bytes in outArray.