CharArrayToString
It copies and converts part of array of uchar type into a returned string.
string CharArrayToString(
uchar array[],
int start=0,
int count=-1
uint codepage=CP_ACP
); |
Parameters
array[]
[in] Array of uchar type.
start=0
[in] Position from which copying starts. by default 0 is used.
count=-1
[in] Number of array elements for copying. Defines the length of a resulting string. Default value is -1, which means copying up to the array end, or till terminal 0.
codepage=CP_ACP
[in] The value of the code page. For the most-used code pages provide appropriate constants.
Return Value
See also
Use of a Codepage